diff --git a/AntiLenny/scripting/AntiLenny.sp b/AntiLenny/scripting/AntiLenny.sp index 703c270..80243a7 100644 --- a/AntiLenny/scripting/AntiLenny.sp +++ b/AntiLenny/scripting/AntiLenny.sp @@ -58,7 +58,7 @@ public void ShowSettingsMenu(int client) menu.SetTitle("AntiLenny Settings", client); char sBuffer[128]; - Format(sBuffer, sizeof(sBuffer), "Hiding Lennies: %s", g_bHideLennies[client] ? "Enabled." : "Disabled."); + Format(sBuffer, sizeof(sBuffer), "Hiding Lennies: %s", g_bHideLennies[client] ? "Enabled" : "Disabled"); menu.AddItem("0", sBuffer); @@ -135,7 +135,7 @@ public void ToggleLennies(int client) g_bHideLennies[client] = !g_bHideLennies[client]; SetClientCookie(client, g_hCookieHideLennies, g_bHideLennies[client] ? "1" : ""); - CPrintToChat(client, "{cyan}[AntiLenny] {white}%s", g_bHideLennies[client] ? "Lennies are now hidden" : "Lennies are not hidden anymore"); + CPrintToChat(client, "{cyan}[AntiLenny] {white}%s", g_bHideLennies[client] ? "Lennies are now hidden." : "Lennies are not hidden anymore."); } //----------------------------------------------------------------------------------------------------