Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions addons/sourcemod/scripting/includes/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

Expand All @@ -24,8 +24,8 @@ static Handle:g_hForwardedVariable;

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