Small cleanup of log statement

This commit is contained in:
Eryn Wells 2022-05-08 23:42:36 -07:00
parent c0c8584f45
commit cef1ad25cb

View file

@ -69,7 +69,7 @@ class Engine:
else:
monster = Monster(monsters.Orc, ai_class=HostileEnemy, position=random_start_position)
LOG.info('Spawning monster %s', monster)
LOG.info('Spawning %s', monster)
self.entities.add(monster)
self.update_field_of_view()