diff options
author | Joseph-Eugene Winzer | 2017-07-23 10:14:12 +0200 |
---|---|---|
committer | Thierry Crozat | 2018-01-23 00:00:12 +0000 |
commit | 83a5c81468af64177082059d16b47564e794c4b1 (patch) | |
tree | e7f30bf8be26657a2ae52c9541d933111dab5000 /engines/supernova | |
parent | aa447e81bc378ea327a2d3f943997416cd118039 (diff) | |
download | scummvm-rg350-83a5c81468af64177082059d16b47564e794c4b1.tar.gz scummvm-rg350-83a5c81468af64177082059d16b47564e794c4b1.tar.bz2 scummvm-rg350-83a5c81468af64177082059d16b47564e794c4b1.zip |
SUPERNOVA: Fixes typo in room definition
Diffstat (limited to 'engines/supernova')
-rw-r--r-- | engines/supernova/rooms.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/supernova/rooms.h b/engines/supernova/rooms.h index f382fc1fc6..0db48b0d06 100644 --- a/engines/supernova/rooms.h +++ b/engines/supernova/rooms.h @@ -188,7 +188,7 @@ public: _objectState[0] = Object("Instrumente", "Hmm, sieht ziemlich kompliziert aus.", INSTRUMENTS, NULLTYPE, 2, 2, 0, NULLROOM, 0); _objectState[1] = Object("Monitor", Object::defaultDescription, MONITOR, NULLTYPE, 0, 0, 0, NULLROOM, 0); _objectState[2] = Object("Monitor", "Dieser Monitor sagt dir nichts.", NULLOBJECT, TAKE, 1, 0, 0, NULLROOM, 0); - _objectState[3] = Object("Ausgang", Object::defaultDescription, NULLOBJECT, EXIT, 255, 255, 0, HALL, 2); + _objectState[3] = Object("Ausgang", Object::defaultDescription, NULLOBJECT, EXIT, 255, 255, 0, HALL, 22); } virtual bool interact(Action verb, Object &obj1, Object &obj2); |