Fixed missing localized string for several weapons WeaponBuyAliasInfo (#729)

This commit is contained in:
Vaqtincha 2022-02-12 23:48:20 +05:00 committed by GitHub
parent a54abba88f
commit bbf4541361
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -124,49 +124,49 @@ WeaponAliasInfo g_weaponAliasInfo[] =
WeaponBuyAliasInfo g_weaponBuyAliasInfo[] = WeaponBuyAliasInfo g_weaponBuyAliasInfo[] =
{ {
{ "galil", WEAPON_GALIL, "#Galil" }, { "galil", WEAPON_GALIL, "#Galil" },
{ "defender", WEAPON_GALIL, "#Galil" }, { "defender", WEAPON_GALIL, "#Galil" },
{ "ak47", WEAPON_AK47, "#AK47" }, { "ak47", WEAPON_AK47, "#AK47" },
{ "cv47", WEAPON_AK47, "#AK47" }, { "cv47", WEAPON_AK47, "#AK47" },
{ "scout", WEAPON_SCOUT, nullptr }, { "scout", WEAPON_SCOUT, "#Scout" },
{ "sg552", WEAPON_SG552, "#SG552" }, { "sg552", WEAPON_SG552, "#SG552" },
{ "krieg552", WEAPON_SG552, "#SG552" }, { "krieg552", WEAPON_SG552, "#SG552" },
{ "awp", WEAPON_AWP, nullptr }, { "awp", WEAPON_AWP, "#ArcticWarfareMagnum" },
{ "magnum", WEAPON_AWP, nullptr }, { "magnum", WEAPON_AWP, "#ArcticWarfareMagnum" },
{ "g3sg1", WEAPON_G3SG1, "#G3SG1" }, { "g3sg1", WEAPON_G3SG1, "#G3SG1" },
{ "d3au1", WEAPON_G3SG1, "#G3SG1" }, { "d3au1", WEAPON_G3SG1, "#G3SG1" },
{ "famas", WEAPON_FAMAS, "#Famas" }, { "famas", WEAPON_FAMAS, "#Famas" },
{ "clarion", WEAPON_FAMAS, "#Famas" }, { "clarion", WEAPON_FAMAS, "#Famas" },
{ "m4a1", WEAPON_M4A1, "#M4A1" }, { "m4a1", WEAPON_M4A1, "#M4A1" },
{ "aug", WEAPON_AUG, "#Aug" }, { "aug", WEAPON_AUG, "#Aug" },
{ "bullpup", WEAPON_AUG, "#Aug" }, { "bullpup", WEAPON_AUG, "#Aug" },
{ "sg550", WEAPON_SG550, "#SG550" }, { "sg550", WEAPON_SG550, "#SG550" },
{ "krieg550", WEAPON_SG550, "#SG550" }, { "krieg550", WEAPON_SG550, "#SG550" },
{ "glock", WEAPON_GLOCK18, nullptr }, { "glock", WEAPON_GLOCK18, "#Glock18" },
{ "9x19mm", WEAPON_GLOCK18, nullptr }, { "9x19mm", WEAPON_GLOCK18, "#Glock18" },
{ "usp", WEAPON_USP, nullptr }, { "usp", WEAPON_USP, "#USP45" },
{ "km45", WEAPON_USP, nullptr }, { "km45", WEAPON_USP, "#USP45" },
{ "p228", WEAPON_P228, nullptr }, { "p228", WEAPON_P228, "#P228" },
{ "228compact", WEAPON_P228, nullptr }, { "228compact", WEAPON_P228, "#P228" },
{ "deagle", WEAPON_DEAGLE, nullptr }, { "deagle", WEAPON_DEAGLE, "#DesertEagle" },
{ "nighthaw", WEAPON_DEAGLE, nullptr }, { "nighthaw", WEAPON_DEAGLE, "#DesertEagle" },
{ "elites", WEAPON_ELITE, "#Beretta96G" }, { "elites", WEAPON_ELITE, "#Beretta96G" },
{ "fn57", WEAPON_FIVESEVEN, "#FiveSeven" }, { "fn57", WEAPON_FIVESEVEN, "#FiveSeven" },
{ "fiveseven", WEAPON_FIVESEVEN, "#FiveSeven" }, { "fiveseven", WEAPON_FIVESEVEN, "#FiveSeven" },
{ "m3", WEAPON_M3, nullptr }, { "m3", WEAPON_M3, "#Super90" },
{ "12gauge", WEAPON_M3, nullptr }, { "12gauge", WEAPON_M3, "#Super90" },
{ "xm1014", WEAPON_XM1014, nullptr }, { "xm1014", WEAPON_XM1014, "#XM1014" },
{ "autoshotgun",WEAPON_XM1014, nullptr }, { "autoshotgun",WEAPON_XM1014, "#XM1014" },
{ "mac10", WEAPON_MAC10, "#Mac10" }, { "mac10", WEAPON_MAC10, "#Mac10" },
{ "tmp", WEAPON_TMP, "#tmp" }, { "tmp", WEAPON_TMP, "#tmp" },
{ "mp", WEAPON_TMP, "#tmp" }, { "mp", WEAPON_TMP, "#tmp" },
{ "mp5", WEAPON_MP5N, nullptr }, { "mp5", WEAPON_MP5N, "#mp5navy" },
{ "smg", WEAPON_MP5N, nullptr }, { "smg", WEAPON_MP5N, "#mp5navy" },
{ "ump45", WEAPON_UMP45, nullptr }, { "ump45", WEAPON_UMP45, "#UMP45" },
{ "p90", WEAPON_P90, nullptr }, { "p90", WEAPON_P90, "#FNP90" },
{ "c90", WEAPON_P90, nullptr }, { "c90", WEAPON_P90, "#FNP90" },
{ "m249", WEAPON_M249, nullptr }, { "m249", WEAPON_M249, "#M249" },
{ nullptr, WEAPON_NONE, nullptr }, { nullptr, WEAPON_NONE, nullptr },
}; };
WeaponClassAliasInfo g_weaponClassAliasInfo[] = WeaponClassAliasInfo g_weaponClassAliasInfo[] =