summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2018-03-14 13:00:41 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2018-03-14 13:00:41 +0100 |
commit | de99545b01770af0be62b73209bb992b40b6c3d2 (patch) | |
tree | 01fbdd9aacceb511c1f29b82cba5085e06d5b6c0 /src/query | |
parent | f3868d956b17f9606e7b7321914e7c08316a062c (diff) |
Reverses some lists.timeline
Diffstat (limited to 'src/query')
-rw-r--r-- | src/query/character_turn.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/query/character_turn.erl b/src/query/character_turn.erl index 81c3c1f..85c5db8 100644 --- a/src/query/character_turn.erl +++ b/src/query/character_turn.erl @@ -187,8 +187,8 @@ handle_actions (RData, Input) -> Action ), { - (CurrActionsDiffUpdates ++ NewActionsDiffUpdates), - (CurrClientUpdates ++ NewClientUpdates), + (NewActionsDiffUpdates ++ CurrActionsDiffUpdates), + (NewClientUpdates ++ CurrClientUpdates), NewBattle, NewCharacterInstance } |