Changeset - af858e6cdc58
[Not reviewed]
default
0 1 0
Silverwing - 6 years ago 2018-12-23 18:01:17

Chapter 2: Text fix
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
journey_venaedanotrr_labyrinth.lua
Show inline comments
 
@@ -843,25 +843,25 @@ ven_second_lock = obj {
 
    end;
 
};
 
        
 
ven_cache = obj {
 
    var {
 
        state = 0
 
    };
 
    nam = "ven_cache";
 
    dsc = function(s)
 
        if (s.state >= 1) then
 
            return [[В южной стене открыта {выемка}. ]];
 
        else
 
            return [[В южной стене имеется небольшую {прорезь}. ]];
 
            return [[В южной стене имеется небольшая {прорезь}. ]];
 
        end;
 
    end;
 
    act = function(s)
 
        if (s.state == 1) then
 
            s.state = 2;
 
            move(ven_item_temple_key_2, pl);
 
            return [[В выемке вы находите ключ. ]];
 
        end;
 
    end;
 
    used = function(s, o)
 
        if (s.state == 0) then
 
            if (o == ven_item_tablet) then
0 comments (0 inline, 0 general)