Merge pull request #3799 from Tharic99/patch-1

Update tb_basic.py to resolve type in scripts caller
This commit is contained in:
Griatch 2025-08-14 16:38:22 +02:00 committed by GitHub
commit d965fde3a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -595,7 +595,7 @@ class CmdFight(Command):
return
here.msg_contents("%s starts a fight!" % self.caller)
# Add a turn handler script to the room, which starts combat.
here.scripts.add(self.command_handler_class)
here.scripts.add(self.combat_handler_class)
class CmdAttack(Command):