No longer checks if cookie exists before creation, because RegClientCookie does that for me.
This commit is contained in:
parent
324dd1abe7
commit
cf429d2e0f
@ -73,13 +73,9 @@ ClassOverlayOnCommandsHook()
|
|||||||
*/
|
*/
|
||||||
ClassOverlayOnCookiesCreate()
|
ClassOverlayOnCookiesCreate()
|
||||||
{
|
{
|
||||||
// If cookie doesn't already exist, then create it.
|
// Create overlay cookie.
|
||||||
g_hOverlayEnabledCookie = FindClientCookie(CLASSOVERLAY_COOKIE_ENABLED);
|
|
||||||
if (g_hOverlayEnabledCookie == INVALID_HANDLE)
|
|
||||||
{
|
|
||||||
g_hOverlayEnabledCookie = RegClientCookie(CLASSOVERLAY_COOKIE_ENABLED, "The toggle state of the class overlay.", CookieAccess_Public);
|
g_hOverlayEnabledCookie = RegClientCookie(CLASSOVERLAY_COOKIE_ENABLED, "The toggle state of the class overlay.", CookieAccess_Public);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Client is joining the server.
|
* Client is joining the server.
|
||||||
|
@ -65,10 +65,7 @@ ZMarketOnCommandsCreate()
|
|||||||
|
|
||||||
ZMarketOnCookiesCreate()
|
ZMarketOnCookiesCreate()
|
||||||
{
|
{
|
||||||
// If auto-rebuy cookie doesn't already exist, then create all ZMarket cookies.
|
// Create all cookies.
|
||||||
g_hZMarketAutoRebuyCookie = FindClientCookie(ZMARKET_COOKIE_AUTOREBUY);
|
|
||||||
if (g_hZMarketAutoRebuyCookie == INVALID_HANDLE)
|
|
||||||
{
|
|
||||||
g_hZMarketAutoRebuyCookie = RegClientCookie(ZMARKET_COOKIE_AUTOREBUY, "The toggle state of auto-rebuy.", CookieAccess_Public);
|
g_hZMarketAutoRebuyCookie = RegClientCookie(ZMARKET_COOKIE_AUTOREBUY, "The toggle state of auto-rebuy.", CookieAccess_Public);
|
||||||
|
|
||||||
decl String:rebuycookiename[32];
|
decl String:rebuycookiename[32];
|
||||||
@ -85,7 +82,6 @@ ZMarketOnCookiesCreate()
|
|||||||
RegClientCookie(rebuycookiename, rebuycookiedesc, CookieAccess_Public);
|
RegClientCookie(rebuycookiename, rebuycookiedesc, CookieAccess_Public);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find ZMarket-specific offsets here.
|
* Find ZMarket-specific offsets here.
|
||||||
|
@ -54,13 +54,9 @@ ZHPOnCommandsCreate()
|
|||||||
*/
|
*/
|
||||||
ZHPOnCookiesCreate()
|
ZHPOnCookiesCreate()
|
||||||
{
|
{
|
||||||
// If cookie doesn't already exist, then create it.
|
// Create ZHP cookie.
|
||||||
g_hZHPEnabledCookie = FindClientCookie(ZHP_COOKIE_ENABLED);
|
|
||||||
if (g_hZHPEnabledCookie == INVALID_HANDLE)
|
|
||||||
{
|
|
||||||
g_hZHPEnabledCookie = RegClientCookie(ZHP_COOKIE_ENABLED, "The toggle state of ZHP.", CookieAccess_Public);
|
g_hZHPEnabledCookie = RegClientCookie(ZHP_COOKIE_ENABLED, "The toggle state of ZHP.", CookieAccess_Public);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Client is joining the server.
|
* Client is joining the server.
|
||||||
|
Loading…
Reference in New Issue
Block a user