summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-03-04 09:22:28 +0100 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-03-04 09:22:28 +0100 |
commit | 10b1058e56079232728e3fc959709bc784e58b5b (patch) | |
tree | a00cd681e8e6b9fc11a286958d9fc1b56ec454d9 /src/struct/battle_action.erl | |
parent | 99fcad8cbe31ba23d9c079b62e8a174c5b3ddf1b (diff) |
Fixes missing cache timeout, tix being binary.
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 755b771..d6bda92 100644 --- a/src/struct/battle_action.erl +++ b/src/struct/battle_action.erl @@ -55,7 +55,7 @@ decode_mov_action (JSONMap) -> -spec decode_atk_action (map()) -> struct(). decode_atk_action (JSONMap) -> - TargetIX = maps:get(<<"tix">>, JSONMap), + TargetIX = binary_to_integer(maps:get(<<"tix">>, JSONMap)), #attack { target_ix = TargetIX }. |