mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-15 20:23:47 +00:00
Fixed: Typos
This commit is contained in:
parent
92347aa436
commit
cb25c89ccd
4 changed files with 4 additions and 5 deletions
|
@ -953,7 +953,6 @@ namespace NLGUI
|
|||
maxPos = _CursorPos;
|
||||
}
|
||||
|
||||
nlinfo("%d, %d", minPos, maxPos);
|
||||
if (replace)
|
||||
{
|
||||
_InputString = _InputString.substr(0, minPos) + toAdd + _InputString.substr(maxPos);
|
||||
|
|
|
@ -513,7 +513,7 @@ int main(int argc, char **argv)
|
|||
std::string::size_type pos = inputFileName.rfind(".");
|
||||
if (pos == std::string::npos)
|
||||
{
|
||||
// name whithout extension
|
||||
// name without extension
|
||||
userColorFileName = inputFileName + "_usercolor";
|
||||
}
|
||||
else
|
||||
|
|
|
@ -143,7 +143,7 @@ public:
|
|||
// Fame system
|
||||
// These take clans as parameters, restricted by call.
|
||||
// These return the proper fame values, or NO_FAME if there's an error.
|
||||
// - GgtStartFame: playerClan must be a Civilization, targetClan must be any non-neutral clan
|
||||
// - getStartFame: playerClan must be a Civilization, targetClan must be any non-neutral clan
|
||||
sint32 getStartFame(PVP_CLAN::TPVPClan playerClan, PVP_CLAN::TPVPClan targetClan);
|
||||
// - getMaxFameByClan: playerClan must be Neutral or the same type (Cult or Clan) as targetClan,
|
||||
// targetClan must be any non-neutral clan.
|
||||
|
|
|
@ -339,7 +339,7 @@ void CGuildMemberModule::_inviteCharacterInGuild(CGuildCharProxy& invitor, CGuil
|
|||
SM_STATIC_PARAMS_2( params, STRING_MANAGER::player, STRING_MANAGER::faction );
|
||||
params[0].setEIdAIAlias( target.getId(), CAIAliasTranslator::getInstance()->getAIAlias( target.getId()) );
|
||||
params[1].Enum = PVP_CLAN::getFactionIndex(invitedAllegiance.first);
|
||||
invitor.sendSystemMessage("GUILD_ICOMPATIBLE_ALLEGIANCE",params);
|
||||
invitor.sendSystemMessage("GUILD_INCOMPATIBLE_ALLEGIANCE",params);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -348,7 +348,7 @@ void CGuildMemberModule::_inviteCharacterInGuild(CGuildCharProxy& invitor, CGuil
|
|||
SM_STATIC_PARAMS_2( params, STRING_MANAGER::player, STRING_MANAGER::faction );
|
||||
params[0].setEIdAIAlias( target.getId(), CAIAliasTranslator::getInstance()->getAIAlias( target.getId()) );
|
||||
params[1].Enum = PVP_CLAN::getFactionIndex(invitedAllegiance.second);
|
||||
invitor.sendSystemMessage("GUILD_ICOMPATIBLE_ALLEGIANCE",params);
|
||||
invitor.sendSystemMessage("GUILD_INCOMPATIBLE_ALLEGIANCE",params);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue