summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/battle-characters/BattleCharacters/Struct/Portrait.elm')
-rw-r--r--src/shared/battle-characters/BattleCharacters/Struct/Portrait.elm8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/shared/battle-characters/BattleCharacters/Struct/Portrait.elm b/src/shared/battle-characters/BattleCharacters/Struct/Portrait.elm
index 8fe92c0..66fd764 100644
--- a/src/shared/battle-characters/BattleCharacters/Struct/Portrait.elm
+++ b/src/shared/battle-characters/BattleCharacters/Struct/Portrait.elm
@@ -3,7 +3,7 @@ module BattleCharacters.Struct.Portrait exposing
Type,
Ref,
find,
- default,
+ none,
get_id,
get_name,
get_body_id,
@@ -41,10 +41,10 @@ find : (Dict.Dict Ref Type) -> Ref -> Type
find dict ref =
case (Dict.get ref dict) of
(Just e) -> e
- Nothing -> default
+ Nothing -> none
-default : Type
-default =
+none : Type
+none =
{
id = "cat",
name = "Black Cat",