Merge branch 'master' of github.com:Jackzmc/sourcemod-plugins

This commit is contained in:
Jackzie 2022-02-18 21:34:22 -06:00
commit 9d55a753be
No known key found for this signature in database
GPG key ID: 1E834FE36520537A
7 changed files with 87 additions and 42 deletions

View file

@ -39,9 +39,9 @@ public Action Command_InstaSpecial(int client, int args) {
ReplyToTargetError(client, target_count);
return Plugin_Handled;
}
int specialType = GetSpecialType(arg2);
SpecialType specialType = GetSpecialType(arg2);
static float pos[3];
if(specialType == -1) {
if(specialType == Special_Invalid) {
ReplyToCommand(client, "Unknown special \"%s\"", arg2);
return Plugin_Handled;
}
@ -108,9 +108,9 @@ public Action Command_InstaSpecialFace(int client, int args) {
ReplyToTargetError(client, target_count);
return Plugin_Handled;
}
int specialType = GetSpecialType(arg2);
SpecialType specialType = GetSpecialType(arg2);
static float pos[3];
if(specialType == -1) {
if(specialType == Special_Invalid) {
ReplyToCommand(client, "Unknown special \"%s\"", arg2);
return Plugin_Handled;
}