mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
Changed: #1304: Debug of the options added in the script (';' replaced by ':' for parameters separation)
This commit is contained in:
parent
713f976748
commit
67bc278aea
1 changed files with 6 additions and 6 deletions
|
@ -170,7 +170,7 @@ public:
|
|||
string ret;
|
||||
ret = "recv_money : "+_Amount;
|
||||
if (_Guild)
|
||||
ret += "; guild";
|
||||
ret += ": guild";
|
||||
ret += NL;
|
||||
return ret;
|
||||
}
|
||||
|
@ -702,7 +702,7 @@ public:
|
|||
string ret;
|
||||
ret = "recv_fame : "+_Faction+" "+_Fame;
|
||||
if (_Guild)
|
||||
ret += "; guild";
|
||||
ret += ": guild";
|
||||
ret += NL;
|
||||
return ret;
|
||||
}
|
||||
|
@ -800,7 +800,7 @@ public:
|
|||
if (_Group)
|
||||
ret += " : group";
|
||||
if (_Guild)
|
||||
ret += "; guild";
|
||||
ret += ": guild";
|
||||
ret += NL;
|
||||
}
|
||||
|
||||
|
@ -874,7 +874,7 @@ public:
|
|||
if (_Group)
|
||||
ret += " : group";
|
||||
if (_Guild)
|
||||
ret += "; guild";
|
||||
ret += ": guild";
|
||||
ret += NL;
|
||||
}
|
||||
|
||||
|
@ -968,7 +968,7 @@ public:
|
|||
if (!_BotDestroyer.empty())
|
||||
ret += " : "+_BotDestroyer;
|
||||
if (_Guild)
|
||||
ret += "; guild";
|
||||
ret += ": guild";
|
||||
ret += NL;
|
||||
}
|
||||
|
||||
|
@ -1800,7 +1800,7 @@ std::string CContentObjective::genNbGuildMembersNeededOption(CMissionData &md)
|
|||
// If we are in a guild mission we add the 'nb_guild_members_needed' option to the script
|
||||
if (md.isGuildMission())
|
||||
{
|
||||
ret = "; nb_guild_members_needed: ";
|
||||
ret = ": nb_guild_members_needed ";
|
||||
ret += toString(_NbGuildMembersNeeded);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue