diff --git a/typeclasses/characters.py b/typeclasses/characters.py index a7ab2e4..406872e 100644 --- a/typeclasses/characters.py +++ b/typeclasses/characters.py @@ -110,11 +110,9 @@ class Character(Object, GenderCharacter, ContribRPCharacter): What if there is a bug and they are able to "get" something important, instead of berries? """ - # Remove all the `hidden` tags, which resets all previously - # seen objects: + # Remove all the tags, which resets all previously seen objects: for tag in self.tags.all(): - if tag.startswith("hidden_"): - self.tags.remove(tag) + self.tags.remove(tag) # Remove everything in their inventory...including letter/ticket for obj in self.contents: diff --git a/world/test-run.exp b/world/test-run.exp index 83fcf6c..49cd99c 100755 --- a/world/test-run.exp +++ b/world/test-run.exp @@ -1024,6 +1024,9 @@ expectit "You hear a click" send "down stairs\n" expectit "Secret Room" +send "empty\n" +expectit "empty" + send "add mushroom\n" expectit "You add gigglecap mushroom to black cauldron."