home · contact · privacy
Simplify toilet need calcuation, add pee-into-pants emergency exit.
[plomrogue2] / plomrogue / tasks.py
index 09e9c56702083cefbff105268a5c7a241f20d8fb..4f390d47c92a88fbb1782944f623b3c44012d846 100644 (file)
@@ -195,8 +195,7 @@ class Task_INTOXICATE(Task):
             self.thing.carrying.full = False
             self.thing.carrying.empty()
             self.thing.send_msg('CHAT "You are drunk now."')
-            self.thing.need_for_toilet *= 2
-            self.thing.need_for_toilet += 1
+            self.thing.need_for_toilet += 10000
             self.thing.drunk = 10000
             self.thing.invalidate('fov')
             self.thing.game.record_change(self.thing.position, 'other')