home
·
contact
·
privacy
projects
/
plomrogue2
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78c0218
)
Remove debugging information from toilet need message.
author
Christian Heller
<c.heller@plomlompom.de>
Tue, 15 Dec 2020 04:47:36 +0000
(
05:47
+0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Tue, 15 Dec 2020 04:47:36 +0000
(
05:47
+0100)
plomrogue/things.py
patch
|
blob
|
history
diff --git
a/plomrogue/things.py
b/plomrogue/things.py
index 6ad8534317476c3c92a2591141253d452ce96ae1..ef50a63be2617bcd9e57e80faf1ca889ca6f9a3a 100644
(file)
--- a/
plomrogue/things.py
+++ b/
plomrogue/things.py
@@
-585,7
+585,7
@@
class Thing_Player(ThingAnimate):
self.send_msg('CHAT "You use the toilet. What a relief!"')
self.need_for_toilet = 0
if 10000 * random.random() < self.need_for_toilet / 100000:
- self.send_msg('CHAT "You need to go to a toilet.
%s"' % self.need_for_toilet
)
+ self.send_msg('CHAT "You need to go to a toilet.
"'
)
if self.need_for_toilet > 1000000:
self.send_msg('CHAT "You pee into your pants. Eww!"')
self.need_for_toilet = 0