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:
8dfe78d
)
Lengthen intoxication time for alcohol and psychedelics.
author
Christian Heller
<c.heller@plomlompom.de>
Sun, 20 Dec 2020 15:40:44 +0000
(16:40 +0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Sun, 20 Dec 2020 15:40:44 +0000
(16:40 +0100)
plomrogue/tasks.py
patch
|
blob
|
history
diff --git
a/plomrogue/tasks.py
b/plomrogue/tasks.py
index 83a1b02306c497d2c607ec7a198bb8fdc3b60bab..b2303261dbdedf60e88bae280eab1e11110ecadc 100644
(file)
--- a/
plomrogue/tasks.py
+++ b/
plomrogue/tasks.py
@@
-259,11
+259,11
@@
class Task_INTOXICATE(Task):
self.thing.carrying.empty()
self.thing.send_msg('CHAT "You are drunk now."')
self.thing.need_for_toilet += 1
self.thing.carrying.empty()
self.thing.send_msg('CHAT "You are drunk now."')
self.thing.need_for_toilet += 1
- self.thing.drunk += 10000
+ self.thing.drunk += 10000
0
self.thing.invalidate('fov')
self.thing.game.record_change(self.thing.position, 'other')
elif self.thing.carrying.type_ == 'Psychedelic':
self.thing.invalidate('fov')
self.thing.game.record_change(self.thing.position, 'other')
elif self.thing.carrying.type_ == 'Psychedelic':
- self.thing.tripping += 10000
+ self.thing.tripping += 10000
0
self.thing.send_msg('CHAT "You start tripping."')
self.thing.send_msg('RANDOM_COLORS')
eaten = self.thing.uncarry()
self.thing.send_msg('CHAT "You start tripping."')
self.thing.send_msg('RANDOM_COLORS')
eaten = self.thing.uncarry()