Changeset - b102dd472f2b
[Not reviewed]
default
0 2 0
Silverwing - 7 years ago 2017-09-17 10:41:30

Lamp fixed
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
items.lua
Show inline comments
 
@@ -250,13 +250,13 @@ item_umbrella = obj {
 
item_lamp = obj {
 
	nam = "lamp";
 
	disp = "Лампа";
 
	dsc = "На столе стоит {керосиновая лампа}. ";
 
	tak = "Вы забираете лампу с собой. ";
 
	inv = function(s)
 
		if (pl.where.nolamp) then
 
		if (here().nolamp) then
 
			return "Здесь не стоит зажигать лампу. ";
 
		end;
 
		if (pl.has_light) then
 
			pl.has_light = false;
 
			return "Вы гасите свет. ";
 
		else
main.lua
Show inline comments
 
@@ -194,12 +194,13 @@ function init()
 
        table.remove(nums, index);
 
    end;
 
    ---game init
 
    pl.where = intro;
 
    ---debug
 
    pl.where = w32_backdoor;
 
    put(item_lamp, pl);
 
    --language_known = true;
 
    --pl.where = "leviathan_airlock";
 
    --move(submarine_leviathan, "iyh_rear_entrance_foot");
 
    --put(item_suit, pl);
 
    --put(item_suit, pl);
 
0 comments (0 inline, 0 general)