summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/struct/player.erl')
-rw-r--r--src/struct/player.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/struct/player.erl b/src/struct/player.erl
index 857906e..c4aefd1 100644
--- a/src/struct/player.erl
+++ b/src/struct/player.erl
@@ -56,7 +56,7 @@ add_to_timeline (NewEvents, Player) ->
Player#player
{
- timeline = (OldTimeline ++ NewEvents)
+ timeline = (NewEvents ++ OldTimeline)
}.
-spec reset_timeline (struct()) -> struct().