Left some debugs in

This commit is contained in:
Howard Abrams 2025-03-02 17:14:58 -08:00
parent fe2eb3884a
commit 8cf5baff72

View file

@ -103,7 +103,6 @@ class Character(Object, DefaultCharacter):
False, the move is immediately canceled.
"""
self.db.tutorstate = self.db.tutorstate | TutorialState.MOVE.value
self.msg(f"State: {self.db.tutorstate}")
if self.db.is_sitting:
self.msg("You stand up first...")
@ -136,7 +135,6 @@ class Character(Object, DefaultCharacter):
if view_lock == lock_string:
self.tags.add(hidden_tag, category="mp")
self.msg(f"Initial look State: {self.db.tutorstate}")
if target.is_typeclass("typeclasses.rooms.Room"):
self.db.tutorstate = self.db.tutorstate | TutorialState.LOOK.value
else: