Changeset - d89a79f644b5
[Not reviewed]
default
0 2 0
silverwing - 5 years ago 2019-10-04 15:28:38

[fix] More empty string cases
2 files changed with 3 insertions and 2 deletions:
0 comments (0 inline, 0 general)
journey_temple.lua
Show inline comments
 
@@ -1399,10 +1399,10 @@ dt_f_wait = obj {
 
    nam = "dt_f_wait";
 
    dsc = "{Ждать}^";
 
    act = function(s)
 
        pr "";
 
        dt_fight.has_shot = true;
 
        dt_fight.rotation = 0;
 
        dt_fight:maketurn();
 
        return true;
 
    end;
 
};
 

	
leviathan.lua
Show inline comments
 
@@ -1170,9 +1170,10 @@ leviathan_dlg = dlg {
 
			leviathan_dlg:update_options();
 
			walk(lse_entered);
 
		end},
 
		{always = "true", "Назад", "", function()
 
		{always = "true", "Назад", function()
 
			stead.need_scene();
 
			back();
 
            return false;
 
		end}
 
	};
 
};
0 comments (0 inline, 0 general)