Changeset - 520fe11708d7
[Not reviewed]
default
0 1 0
Silverwing - 4 years ago 2020-05-05 08:10:13

fix: dialogs fixed for party members when called by phone
1 file changed with 14 insertions and 16 deletions:
party.lua
14
16
0 comments (0 inline, 0 general)
party.lua
Show inline comments
 
@@ -753,7 +753,9 @@ radcliffe_dlg = dlg {
 
 
        psub("generic");
 
 
        if s.home then
 
        if s.from_call then
 
            return [[Вы слышите в трубке голос Уолтера Рэдклиффа: "Уолтер Рэдклифф на связи". ]];
 
        elseif s.home then
 
            if char_radcliffe.on_conflict == 0 and conflict_resolved then
 
                char_radcliffe.on_conflict = 1;
 
                if (rel_walter < 0) then
 
@@ -800,9 +802,7 @@ radcliffe_dlg = dlg {
 
            end;
 
        end;
 
 
        if s.from_call then
 
            return [[Вы слышите в трубке голос Уолтера Рэдклиффа: "Уолтер Рэдклифф на связи". ]];
 
        elseif not s.home then
 
        if not s.home then
 
            return [[Уолтер ждет ваших указаний. ]];
 
        else
 
            return [[Уолтер задумчиво смотрит на вас. ]];
 
@@ -1015,7 +1015,9 @@ wright_main_dlg = dlg {
 
            poff('on_ven_keeper');
 
        end;
 
 
        if s.home or not s.underwater then
 
        if s.from_call then
 
            return [[Вы слышите в трубке голос Джека Райта: "Джек Райт на связи. Что вы хотели?" ]];
 
        elseif s.home or not s.underwater then
 
            if char_wright.on_conflict == 0 and conflict_resolved then
 
                char_wright.on_conflict = 1;
 
                if (rel_jack < 0) then
 
@@ -1063,11 +1065,8 @@ wright_main_dlg = dlg {
 
 
            return [[Джек вопросительно смотрит на вас. ]];
 
        end;
 
        if s.from_call then
 
            return [[Вы слышите в трубке голос Джека Райта: "Джек Райт на связи. Что вы хотели?" ]];
 
        else
 
		    return [[Джек ждет ваших указаний. ]];
 
        end;
 
        
 
		return [[Джек ждет ваших указаний. ]];
 
	end;
 
	phr = {
 
        {tag="generic"};
 
@@ -1269,7 +1268,9 @@ anna_dlg = dlg {
 
            poff("on_iraa_temple");
 
        end;
 
 
        if s.home then
 
        if s.from_call then
 
            return [[Вы слышите в трубке голос Анны Рэдклифф: "Анна Рэдклифф на связи". ]];
 
        elseif s.home then
 
            if char_anna.on_conflict == 0 and conflict_resolved then
 
                char_anna.on_conflict = 1;
 
                if (rel_anna < 0) then
 
@@ -1309,11 +1310,8 @@ anna_dlg = dlg {
 
 
            return [[Анна вопросительно смотрит на вас. ]];
 
        end;
 
        if s.from_call then
 
            return [[Вы слышите в трубке голос Анны Рэдклифф: "Анна Рэдклифф на связи". ]];
 
        else
 
		    return [[Анна ждет ваших указаний. ]];
 
        end;
 
        
 
        return [[Анна ждет ваших указаний. ]];
 
	end;
 
	phr = {
 
        {tag="generic"};
0 comments (0 inline, 0 general)