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/struct/battle_action.erl | |
parent | f3868d956b17f9606e7b7321914e7c08316a062c (diff) |
Reverses some lists.timeline
Diffstat (limited to 'src/struct/battle_action.erl')
-rw-r--r-- | src/struct/battle_action.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/struct/battle_action.erl b/src/struct/battle_action.erl index 0fe780f..8aaaef9 100644 --- a/src/struct/battle_action.erl +++ b/src/struct/battle_action.erl @@ -113,7 +113,7 @@ handle_attack_sequence nothing -> {AttackValidEffects, AttackerHealth, DefenderHealth}; _ -> { - [AttackResult|AttackValidEffects], + (AttackValidEffects ++ [AttackResult]), NewAttackerHealth, NewDefenderHealth } |