fix for amb1594 part 1 - missing semicolons

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%402009
This commit is contained in:
David Anderson 2008-04-08 23:42:17 +00:00
parent 72b6510e61
commit 53d11eae63

View File

@ -113,7 +113,7 @@ stock TF2_SetPlayerClass(client, TFClassType:class, bool:weapons=true)
if (weapons)
{
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;
}
SetEntData(entity, offset + (client*4), value)
SetEntData(entity, offset + (client*4), value);
return true;
}