🐛 Allow computer to always set lights
This commit is contained in:
parent
a8bf9baaf8
commit
fd508d9ab0
4 changed files with 10 additions and 3 deletions
|
|
@ -1,4 +1,3 @@
|
|||
! @todo fix talking to computer when lights are off
|
||||
Object computer "Computer"
|
||||
with name 'computer' 'ship',
|
||||
description "The computer of the ship uses non-sentient artificial intelligence^
|
||||
|
|
|
|||
|
|
@ -1,4 +1,11 @@
|
|||
Class Room has light;
|
||||
Class Room
|
||||
with add_to_scope [;
|
||||
AddToScope(computer);
|
||||
PlaceInScope(computer);
|
||||
AddToScope(lights);
|
||||
PlaceInScope(lights);
|
||||
],
|
||||
has light;
|
||||
|
||||
! Class Set
|
||||
! with before [;
|
||||
|
|
|
|||
0
MoreVerbs.inf
Normal file
0
MoreVerbs.inf
Normal file
|
|
@ -28,10 +28,11 @@ Include "Characters.inf";
|
|||
Include "Items.inf";
|
||||
|
||||
[ Initialise ;
|
||||
location = bunk; ! @todo switch to bunk
|
||||
location = bunk;
|
||||
player.description = "You are wearing an operations uniform,
|
||||
with a single pip.";
|
||||
move computer to bunk;
|
||||
];
|
||||
|
||||
Include "Grammar";
|
||||
Include "MoreVerbs.inf";
|
||||
Loading…
Add table
Add a link
Reference in a new issue