From 29f5d4f645d7f8488666eb2402ebfb8beba79973 Mon Sep 17 00:00:00 2001 From: Bizcochito Date: Thu, 2 Mar 2023 18:00:42 +0100 Subject: [PATCH] commet --- actions.py | 4 ++-- game.py | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) 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)