This commit is contained in:
Bizcochito 2023-03-02 18:00:42 +01:00
parent f498618f5a
commit 29f5d4f645
2 changed files with 5 additions and 2 deletions

View File

@ -16,7 +16,7 @@ class NA:
Action = Move | Idle | NA
action_timing = {
Move: 500,
Idle: 100,
Move: 50,
Idle: 10,
NA: 1
}

View File

@ -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)