mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-11 07:37:56 -05:00
Convert team change strings to localized strings
This commit is contained in:
@ -93,6 +93,12 @@ LANG_ENGLISH "Clip Ammo!"
|
|||||||
REFERENCE ZOMBIE_POWERUP_CLIP_EMPTY
|
REFERENCE ZOMBIE_POWERUP_CLIP_EMPTY
|
||||||
LANG_ENGLISH "Clip Empty!"
|
LANG_ENGLISH "Clip Empty!"
|
||||||
|
|
||||||
|
REFERENCE ZOMBIE_ONLY_CHANGE_TEAMS_UNBALANCED
|
||||||
|
LANG_ENGLISH "Can only change teams if unbalanced."
|
||||||
|
|
||||||
|
REFERENCE ZOMBIE_WAITING_FOR_TEAM_CHANGE
|
||||||
|
LANG_ENGLISH "Waiting for other player to change teams."
|
||||||
|
|
||||||
REFERENCE ZOMBIE_WAITING_FOR_MORE_PLAYER_CAPS
|
REFERENCE ZOMBIE_WAITING_FOR_MORE_PLAYER_CAPS
|
||||||
LANG_ENGLISH "WAITING FOR &&1 MORE PLAYER [&&2/&&3]"
|
LANG_ENGLISH "WAITING FOR &&1 MORE PLAYER [&&2/&&3]"
|
||||||
|
|
||||||
|
@ -423,7 +423,7 @@ do_team_change()
|
|||||||
|
|
||||||
if (teamplayers - 1 <= otherteamplayers)
|
if (teamplayers - 1 <= otherteamplayers)
|
||||||
{
|
{
|
||||||
self iprintln("Can only change teams if unbalanced.");
|
self iprintln(&"ZOMBIE_ONLY_CHANGE_TEAMS_UNBALANCED");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -458,7 +458,7 @@ do_team_change()
|
|||||||
|
|
||||||
if (!valid_num)
|
if (!valid_num)
|
||||||
{
|
{
|
||||||
self iprintln("Waiting for other player to change teams.");
|
self iprintln(&"ZOMBIE_WAITING_FOR_TEAM_CHANGE");
|
||||||
|
|
||||||
level waittill("team_change", team);
|
level waittill("team_change", team);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user