forked from UNLOZE/sm-plugins
Fix includes
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
#pragma semicolon 1
|
||||
#pragma newdecls required
|
||||
|
||||
#include <sourcemod>
|
||||
#include <sdktools>
|
||||
#include <sdkhooks>
|
||||
@@ -7,9 +10,6 @@
|
||||
#include <zombiereloaded>
|
||||
#define REQUIRE_PLUGIN
|
||||
|
||||
#pragma semicolon 1
|
||||
#pragma newdecls required
|
||||
|
||||
public Plugin myinfo =
|
||||
{
|
||||
name = "GlowColors",
|
||||
@@ -334,12 +334,12 @@ public Action Timer_ApplyGlowColor(Handle timer, int serial)
|
||||
ApplyGlowColor(client);
|
||||
}
|
||||
|
||||
public int ZR_OnClientInfected(int client, int attacker, bool motherInfect, bool respawnOverride, bool respawn)
|
||||
public void ZR_OnClientInfected(int client, int attacker, bool motherInfect, bool respawnOverride, bool respawn)
|
||||
{
|
||||
ApplyGlowColor(client);
|
||||
}
|
||||
|
||||
public int ZR_OnClientHumanPost(int client, bool respawn, bool protect)
|
||||
public void ZR_OnClientHumanPost(int client, bool respawn, bool protect)
|
||||
{
|
||||
ApplyGlowColor(client);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user