Entdeckung des Fischs

This commit is contained in:
Olli Graf
2022-05-14 19:26:33 +02:00
parent 80f4dd484e
commit 9fa3e55775
5 changed files with 34 additions and 13 deletions

View File

@@ -56,6 +56,8 @@ def verarbeiteBefehl(parsedCommand):
actionmodul.fange(parsedCommand)
elif id == '23':
actionmodul.hilfe()
elif id == '24':
actionmodul.schlage(parsedCommand)
elif id == '-1':
world.fehler = 'Ich verstehe diesen Befehl nicht'
else:
@@ -121,7 +123,7 @@ def debug_Items():
count = 0
for item in world.gegenstaende:
logging.debug(f'count= {count}')
logging.debug(f'Itemtyp: ' + {item})
logging.debug(f'Itemtyp: {type(item)}')
# logging.debug(f'Item-IdId:{item.id} - Item-Name:{item.name}')
count = count +1