Skip to content
This repository has been archived by the owner on May 8, 2023. It is now read-only.

Commit

Permalink
Update to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
domikuss committed Oct 18, 2022
1 parent ea4dad4 commit 6e3211c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Release Notes

## [2.0.1]

### Fixes:
- Fixed error Invalid database Handle 0 (error: 4)

## [2.0.0]

### Innovations:
Expand Down
6 changes: 3 additions & 3 deletions scripting/killscreen.sp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Handle g_hCookie;
#define NORMAL_COOKIE_CHAR 'n'
static const int g_iSource[] = {'\0', VIP_COOKIE_CHAR, '\0', NORMAL_COOKIE_CHAR};

#define PLUGIN_VERSION "2.0.0"
#define PLUGIN_VERSION "2.0.1"

#define DEBUG_LEVEL 0

Expand Down Expand Up @@ -373,7 +373,7 @@ public void OnLibraryAdded(const char[] szName)
{
Debug(3, "OnLibraryAdded", "VIP library added.")

AddFlag(g_EPluginStatus, EPluginStatus_VIP_Loaded);
//AddFlag(g_EPluginStatus, EPluginStatus_VIP_Loaded);
if(VIP_IsVIPLoaded())
{
VIP_OnVIPLoaded();
Expand All @@ -386,7 +386,7 @@ public void OnLibraryAdded(const char[] szName)
{
Debug(3, "OnLibraryAdded", "Shop library added.")

AddFlag(g_EPluginStatus, EPluginStatus_Shop_Loaded);
//AddFlag(g_EPluginStatus, EPluginStatus_Shop_Loaded);
if(Shop_IsStarted())
{
Shop_Started();
Expand Down

0 comments on commit 6e3211c

Please sign in to comment.