Skip to content

Commit

Permalink
Fix incorrect index for Voodoo-Cursed Engineer Soul
Browse files Browse the repository at this point in the history
  • Loading branch information
FortyTwoFortyTwo committed Apr 17, 2021
1 parent 4e2e3f3 commit e6cc002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/szf/stocks.sp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#define SKIN_ZOMBIE_SPY SKIN_ZOMBIE + 18

static char g_sClassFiles[view_as<int>(TFClassType)][16] = { "", "scout", "sniper", "soldier", "demo", "medic", "heavy", "pyro", "spy", "engineer" };
static int g_iVoodooIndex[view_as<int>(TFClassType)] = {-1, 5617, 5625, 5618, 5620, 5622, 5619, 5624, 5623, 5616};
static int g_iVoodooIndex[view_as<int>(TFClassType)] = {-1, 5617, 5625, 5618, 5620, 5622, 5619, 5624, 5623, 5621};
static int g_iZombieSoulIndex[view_as<int>(TFClassType)];

////////////////
Expand Down

0 comments on commit e6cc002

Please sign in to comment.