Skip to content

Commit

Permalink
remove FCVAR_PLUGIN flag
Browse files Browse the repository at this point in the history
  • Loading branch information
CrimsonTautology committed Oct 23, 2017
1 parent 4d59f80 commit 2272d2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/jetpack_bling.sp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public OnPluginStart()
{
LoadTranslations("jetpack_plus.phrases");

CreateConVar("sm_jetpack_bling_version", PLUGIN_VERSION, PLUGIN_NAME, FCVAR_PLUGIN | FCVAR_SPONLY | FCVAR_REPLICATED | FCVAR_NOTIFY | FCVAR_DONTRECORD);
CreateConVar("sm_jetpack_bling_version", PLUGIN_VERSION, PLUGIN_NAME, FCVAR_SPONLY | FCVAR_REPLICATED | FCVAR_NOTIFY | FCVAR_DONTRECORD);
g_Cvar_DonatorsOnly = CreateConVar("sm_jetpack_donators_only", "0", "Whether only dontaors can change their jetpack bling");

RegConsoleCmd("sm_bling", Command_Bling, "Change jetpack bling.");
Expand Down
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/jetpack_plus.sp
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ public OnPluginStart()
{
LoadTranslations("jetpack_plus.phrases");

CreateConVar("sm_jetpack_version", PLUGIN_VERSION, PLUGIN_NAME, FCVAR_PLUGIN | FCVAR_SPONLY | FCVAR_REPLICATED | FCVAR_NOTIFY | FCVAR_DONTRECORD);
CreateConVar("sm_jetpack_version", PLUGIN_VERSION, PLUGIN_NAME, FCVAR_SPONLY | FCVAR_REPLICATED | FCVAR_NOTIFY | FCVAR_DONTRECORD);
g_Cvar_Enabled = CreateConVar(
"sm_jetpack",
"1",
"Set to 1 to enable the jetpack plugin",
FCVAR_PLUGIN | FCVAR_REPLICATED | FCVAR_NOTIFY,
FCVAR_REPLICATED | FCVAR_NOTIFY,
true,
0.0,
true,
Expand Down

0 comments on commit 2272d2b

Please sign in to comment.