Skip to content

Commit

Permalink
v1.5.2 release, updated to SM 1.11
Browse files Browse the repository at this point in the history
Added support for SM 1.11 (by fixing some minor code mistakes)
The plugin is now compiled in SM 1.11
Added some includes which have been updated to work in SM 1.11 for easy compilation. I would still advise you keep them updated yourself as the versions I provide may become outdated in the future.
  • Loading branch information
azalty committed Mar 2, 2023
1 parent b8d43e4 commit adfab31
Show file tree
Hide file tree
Showing 5 changed files with 1,728 additions and 7 deletions.
Binary file modified plugins/no_dupe_account.smx
Binary file not shown.
6 changes: 3 additions & 3 deletions scripting/include/colorvariables.inc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#if defined _colorvariables_included
#endinput
#endif
#define _colorvariables_included "1.3"
#define _colorvariables_included "1.3.1"

// Author: Raska aka KissLick
// Syntax update: Keith Warren (Drixevel) (redwerewolf on Allied Mods)
Expand All @@ -25,8 +25,8 @@ static Handle g_hForwardedVariable;

enum triple {
unknown = -1,
yes = true,
no = false
no = 0,
yes = 1
};
static triple g_IsSource2009 = unknown;
// ----------------------------------------------------------------------------------------
Expand Down
Loading

0 comments on commit adfab31

Please sign in to comment.