fix for amb1594 part 1 - missing semicolons
--HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%402009
This commit is contained in:
parent
72b6510e61
commit
53d11eae63
@ -113,7 +113,7 @@ stock TF2_SetPlayerClass(client, TFClassType:class, bool:weapons=true)
|
|||||||
if (weapons)
|
if (weapons)
|
||||||
{
|
{
|
||||||
TF2_RemoveAllWeapons(client);
|
TF2_RemoveAllWeapons(client);
|
||||||
TF2_EquipPlayerClassWeapons(client, class)
|
TF2_EquipPlayerClassWeapons(client, class);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -193,7 +193,7 @@ stock bool:TF2_SetPlayerResourceData(client, TFResourceType:type, any:value)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
SetEntData(entity, offset + (client*4), value)
|
SetEntData(entity, offset + (client*4), value);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user