summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-03-27 18:24:38 +0100 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-03-27 18:24:38 +0100 |
commit | 6ca8f6fbb8083db156c906e848173e827de838ef (patch) | |
tree | 3e887472de809bf8a2210a28e892c9d8782d75b8 /src/shared/battle-characters/BattleCharacters/Struct/Character.elm | |
parent | 4dcb831ddc1f30251b302b129a18c4e08b276989 (diff) |
It compiles again!
Diffstat (limited to 'src/shared/battle-characters/BattleCharacters/Struct/Character.elm')
-rw-r--r-- | src/shared/battle-characters/BattleCharacters/Struct/Character.elm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shared/battle-characters/BattleCharacters/Struct/Character.elm b/src/shared/battle-characters/BattleCharacters/Struct/Character.elm index e3ba148..39c7d26 100644 --- a/src/shared/battle-characters/BattleCharacters/Struct/Character.elm +++ b/src/shared/battle-characters/BattleCharacters/Struct/Character.elm @@ -14,6 +14,7 @@ module BattleCharacters.Struct.Character exposing get_statistics, get_active_weapon, get_inactive_weapon, + is_using_secondary, switch_weapons, dirty_switch_weapons, decoder, @@ -148,6 +149,9 @@ get_attributes char = char.attributes get_statistics : Type -> Battle.Struct.Statistics.Type get_statistics char = char.statistics +is_using_secondary : Type -> Bool +is_using_secondary char = char.is_using_secondary + switch_weapons : Type -> Type switch_weapons char = (refresh_omnimods |