Fixed minor errors, fixed antistick having some false positives, fixed every single Zombie:Reloaded line at top of the file.

This commit is contained in:
Greyscale
2009-07-04 23:49:23 -07:00
parent 07d6e1f8f1
commit 5497a13dd7
58 changed files with 81 additions and 72 deletions

View File

@ -1,7 +1,7 @@
/*
* ============================================================================
*
* Zombie:Reloaded
* Zombie:Reloaded
*
* File: menu_weapons.inc
* Type: Core

View File

@ -1,7 +1,7 @@
/*
* ============================================================================
*
* Zombie:Reloaded
* Zombie:Reloaded
*
* File: restrict.inc
* Type: Core

View File

@ -1,7 +1,7 @@
/*
* ============================================================================
*
* Zombie:Reloaded
* Zombie:Reloaded
*
* File: weaponalpha.inc
* Type: Core

View File

@ -1,7 +1,7 @@
/*
* ============================================================================
*
* Zombie:Reloaded
* Zombie:Reloaded
*
* File: weaponammo.inc
* Type: Core

View File

@ -1,7 +1,7 @@
/*
* ============================================================================
*
* Zombie:Reloaded
* Zombie:Reloaded
*
* File: weapons.inc
* Type: Core

View File

@ -1,7 +1,7 @@
/*
* ============================================================================
*
* Zombie:Reloaded
* Zombie:Reloaded
*
* File: zmarket.inc
* Type: Module
@ -1003,6 +1003,12 @@ stock ZMarketSetRebuyCookie(client, WeaponsSlot:slot, const String:value[])
// Find cookie handle, and retrieve its value.
new Handle:rebuycookie = FindClientCookie(rebuycookiename);
if (rebuycookie == INVALID_HANDLE)
{
return;
}
// Set weapon to cookie.
SetClientCookie(client, rebuycookie, value);
}