1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-26 23:20:34 -05:00

Convert strings to localizedstrings

This commit is contained in:
Jbleezy
2023-12-25 03:31:27 -08:00
parent aba3b7874b
commit 98255696a3
15 changed files with 228 additions and 107 deletions

View File

@ -318,7 +318,7 @@ full_ammo_powerup(drop_item, player)
if (level.scr_zm_ui_gametype == "zgrief")
{
clip_only = 1;
drop_item.hint = &"Clip Ammo!";
drop_item.hint = &"ZOMBIE_POWERUP_CLIP_AMMO";
}
players = get_players(player.team);
@ -494,7 +494,7 @@ empty_clip_on_hud(drop_item, team)
hudelem.alpha = 0;
hudelem fadeovertime(0.5);
hudelem.alpha = 1;
hudelem.label = &"Clip Empty!";
hudelem.label = &"ZOMBIE_POWERUP_CLIP_EMPTY";
hudelem thread empty_clip_move_hud(team);
}
@ -606,7 +606,7 @@ nuke_powerup(drop_item, player_team)
{
if (isDefined(level.increment_score_func))
{
[[level.increment_score_func]](player_team, 10, 1, "nuke_grab");
[[level.increment_score_func]](player_team, 10, 1, &"ZOMBIE_ZGRIEF_NUKE_GRABBED_SCORE");
}
}
}