summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2018-08-29 16:46:13 +0200 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2018-08-29 16:46:13 +0200 |
commit | e1c7e78b4b4db2f818226faf58efff82fbdfeeaa (patch) | |
tree | 40bcb27bcb157ac0301681ef365892a78efe904a /src/character | |
parent | 9ffa08c3aad8e4f40b7f7d1e7845e5153f9c34ab (diff) |
Updates TODOs, handles max health changes.
Diffstat (limited to 'src/character')
-rw-r--r-- | src/character/chr_shim.erl | 2 | ||||
-rw-r--r-- | src/character/query/chr_update.erl | 2 | ||||
-rw-r--r-- | src/character/struct/chr_character.erl | 14 |
3 files changed, 9 insertions, 9 deletions
diff --git a/src/character/chr_shim.erl b/src/character/chr_shim.erl index d7e688f..04b3708 100644 --- a/src/character/chr_shim.erl +++ b/src/character/chr_shim.erl @@ -20,6 +20,6 @@ generate_random_character_roster () -> Result = chr_roster:new(<<"0">>, <<"0">>), - %% TODO: unimplemented. + %% TODO [DEBUG][REQUIRED]: unimplemented. Result. diff --git a/src/character/query/chr_update.erl b/src/character/query/chr_update.erl index adac09a..90d87c5 100644 --- a/src/character/query/chr_update.erl +++ b/src/character/query/chr_update.erl @@ -89,7 +89,7 @@ update_data (QueryState, Input) -> chr_character:validate(Inventory, Character), - %% TODO + %% TODO [FUNCTION: chr][REQUIRED]: unimplemented. QueryState. -spec commit_update (query_state(), input()) -> 'ok'. diff --git a/src/character/struct/chr_character.erl b/src/character/struct/chr_character.erl index 80b9bcd..0b1056e 100644 --- a/src/character/struct/chr_character.erl +++ b/src/character/struct/chr_character.erl @@ -69,12 +69,12 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -spec validate_name (binary()) -> ok. validate_name (_Name) -> - % TODO: unimplemented + % TODO [SECURITY][LOW]: unimplemented ok. -spec validate_portrait (shr_inventory:type(), binary()) -> ok. validate_portrait (_Inventory, _Portrait) -> - % TODO: unimplemented + % TODO [SECURITY][LOW]: unimplemented ok. -spec validate_weapons @@ -84,22 +84,22 @@ validate_portrait (_Inventory, _Portrait) -> ) -> ok. validate_weapons (_Inventory, {_ActiveWeapon, _SecondaryWeapon}) -> - % TODO: unimplemented + % TODO [SECURITY][LOW]: unimplemented ok. -spec validate_armor (shr_inventory:type(), shr_armor:id()) -> ok. validate_armor (_Inventory, _Armor) -> - % TODO: unimplemented + % TODO [SECURITY][LOW]: unimplemented ok. -spec validate_glyphs (shr_inventory:type(), array:array(shr_glyph:id())) -> ok. validate_glyphs (_Inventory, _Glyphs) -> - % TODO: unimplemented + % TODO [SECURITY][LOW]: unimplemented ok. -spec validate_glyph_board (shr_inventory:type(), shr_glyph_board:id()) -> ok. validate_glyph_board (_Inventory, _GlyphBoard) -> - % TODO: unimplemented + % TODO [SECURITY][LOW]: unimplemented ok. -spec validate_glyphs_on_board @@ -109,7 +109,7 @@ validate_glyph_board (_Inventory, _GlyphBoard) -> ) -> ok. validate_glyphs_on_board (_Glyphs, _GlyphBoard) -> - % TODO: unimplemented + % TODO [SECURITY][LOW]: unimplemented ok. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |