Added option for random dissolve effect.

Added an option to the account module to give money for damaging a client.
Expanded player hull xy offset by 1 unit.
Fixed anti-stuck not solidifying clients.
Fixed weapon rendering glitches (again)
This commit is contained in:
Greyscale
2009-06-16 11:20:56 -07:00
parent 681eb0e64d
commit 129fb0e60a
8 changed files with 67 additions and 12 deletions

View File

@ -69,7 +69,7 @@ WeaponAlphaOnClientDisconnect(client)
/**
* The round is starting.
*/
WeaponAlphaOnRoundStart()
WeaponAlphaOnRoundStartPost()
{
// Allow weapon render mode to be modified.
g_bWeaponAlpha = true;

View File

@ -308,10 +308,10 @@ WeaponsOnClientSpawn(client)
/**
* The round is starting.
*/
WeaponsOnRoundStart()
WeaponsOnRoundStartPost()
{
// Forward event to sub-modules
WeaponAlphaOnRoundStart();
WeaponAlphaOnRoundStartPost();
}
/**