summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-11-02 20:19:57 +0100 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-11-02 20:19:57 +0100 |
commit | 2ad88173a0bf967e483fdb785e0dda31d50e9009 (patch) | |
tree | 24984a23d797827e29263d0261853e2232eff5f3 /src/battle/struct/btl_action.erl | |
parent | d6efe72291a12284536340d047f43737cbfd3b0b (diff) |
...
Diffstat (limited to 'src/battle/struct/btl_action.erl')
-rw-r--r-- | src/battle/struct/btl_action.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/battle/struct/btl_action.erl b/src/battle/struct/btl_action.erl index 71a9636..f51da34 100644 --- a/src/battle/struct/btl_action.erl +++ b/src/battle/struct/btl_action.erl @@ -120,7 +120,7 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -spec decode (binary(), non_neg_integer(), map()) -> type(). decode (?CATEGORY_MOVE, ActorIX, Map) -> - EncodedPath = map:get(?MOVE_PATH_FIELD, Map), + EncodedPath = maps:get(?MOVE_PATH_FIELD, Map), Path = lists:map(fun shr_direction:decode/1, EncodedPath), #move @@ -130,7 +130,7 @@ decode (?CATEGORY_MOVE, ActorIX, Map) -> movement_points = -1 }; decode (?CATEGORY_ATTACK, ActorIX, Map) -> - TargetIX = map:get(?ATTACK_TARGET_FIELD, Map), + TargetIX = maps:get(?ATTACK_TARGET_FIELD, Map), #attack { @@ -144,8 +144,8 @@ decode (?CATEGORY_SWITCH_WEAPONS, ActorIX, _Map) -> actor_ix = ActorIX }; decode (?CATEGORY_USE_SKILL, ActorIX, Map) -> - Targets = map:get(?USE_SKILL_TARGETS_FIELD, Map), - EncodedLocations = map:get(?USE_SKILL_LOCATIONS_FIELD, Map), + Targets = maps:get(?USE_SKILL_TARGETS_FIELD, Map), + EncodedLocations = maps:get(?USE_SKILL_LOCATIONS_FIELD, Map), Locations = lists:map(fun shr_location:decode/1, EncodedLocations), #skill @@ -271,7 +271,7 @@ get_category (Action) when is_record(Action, switch_weapons) -> switch_weapons; get_category (Action) when is_record(Action, skill) -> skill. -spec decode (non_neg_integer(), map()) -> type(). -decode (ActorIX, Map) -> decode(map:get(?CATEGORY_FIELD), ActorIX, Map). +decode (ActorIX, Map) -> decode(maps:get(?CATEGORY_FIELD, Map), ActorIX, Map). -spec from_map_marker ( |