diff --git a/plugins/antiflood.sp b/plugins/antiflood.sp index d84ed39e..03950d57 100644 --- a/plugins/antiflood.sp +++ b/plugins/antiflood.sp @@ -40,7 +40,7 @@ new Handle:sm_flood_time; /* Handle to sm_flood_time convar */ public OnPluginStart() { - LoadTranslations("plugin.antiflood.txt"); + LoadTranslations("plugin.antiflood"); RegConsoleCmd("say", CheckChatFlood); RegConsoleCmd("say_team", CheckChatFlood); diff --git a/plugins/basecommands.sp b/plugins/basecommands.sp index 14813391..e72966aa 100644 --- a/plugins/basecommands.sp +++ b/plugins/basecommands.sp @@ -39,8 +39,8 @@ new Handle:hBanRemoved = INVALID_HANDLE; public OnPluginStart() { - LoadTranslations("common.phrases.txt"); - LoadTranslations("plugin.basecommands.txt"); + LoadTranslations("common.phrases"); + LoadTranslations("plugin.basecommands"); RegAdminCmd("sm_kick", Command_Kick, ADMFLAG_KICK, "sm_kick <#userid|name> [reason]"); RegAdminCmd("sm_map", Command_Map, ADMFLAG_CHANGEMAP, "sm_map "); RegAdminCmd("sm_rcon", Command_Rcon, ADMFLAG_RCON, "sm_rcon "); diff --git a/plugins/reservedslots.sp b/plugins/reservedslots.sp index 5fc61aa4..3743d41b 100644 --- a/plugins/reservedslots.sp +++ b/plugins/reservedslots.sp @@ -43,7 +43,7 @@ new Handle:sv_visiblemaxplayers; public OnPluginStart() { - LoadTranslations("plugin.reservedslots.txt"); + LoadTranslations("plugin.reservedslots"); sm_reserved_slots = CreateConVar("sm_reserved_slots", "0", "Number of reserved player slots", 0, true, 0.0); sm_hide_slots = CreateConVar("sm_hide_slots", "0", "If set to 1, reserved slots will hidden (subtracted from the max slot count)", 0, true, 0.0, true, 1.0);