home · contact · privacy
Fix remixer drop bug.
[plomrogue2] / plomrogue / things.py
index 53837e36194b9479454500381153e67cff8f5248..116ad696338ffea4fae46fc579426f8e6489048f 100644 (file)
@@ -182,6 +182,7 @@ class Thing_HatRemixer(Thing):
             new_design += random.choice(list(legal_chars))
         hat.design = new_design
         self.sound('HAT REMIXER', 'remixing a hat …')
+        self.game.changed = True