Skip to content

Commit

Permalink
Translation hotfix (thanks whany God)
Browse files Browse the repository at this point in the history
  • Loading branch information
punteroo committed Apr 4, 2021
1 parent bec9e5c commit 8d2c07f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified plugins/vip-killstreak.smx
Binary file not shown.
6 changes: 3 additions & 3 deletions scripting/vip-killstreak.sp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#pragma semicolon 1
#pragma newdecls required

#define PLUGIN_VERSION "2.3.2"
#define PLUGIN_VERSION "2.3.3"

#define MAX_SHEENS 8
#define MAX_STREAKERS 8
Expand Down Expand Up @@ -300,8 +300,8 @@ void GenerateWeaponMenu(int client, int slot)
bool isAll = Ks[client].all;

if (!isAll) {
char slotStr[4];
Format(slotStr, 4, "Ks_Slot_%d", slot);
char slotStr[32];
Format(slotStr, sizeof(slotStr), "Ks_Slot_%d", slot + 1);

Format(title, sizeof(title), "%T", slotStr, client);
}
Expand Down

0 comments on commit 8d2c07f

Please sign in to comment.