diff --git a/actions.py b/actions.py index ed2733a..6d9ebb8 100644 --- a/actions.py +++ b/actions.py @@ -16,7 +16,7 @@ class NA: Action = Move | Idle | NA action_timing = { - Move: 500, - Idle: 100, + Move: 50, + Idle: 10, NA: 1 } \ No newline at end of file diff --git a/game.py b/game.py index d35687f..aaf904c 100644 --- a/game.py +++ b/game.py @@ -29,6 +29,9 @@ class Game: self.ticks += 1 def instance_character(self, x, y, character: Character): + """ + Instances a character in space and time + """ self.floor.entities.add_creature(x, y, character) self.reschedule(character)