Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
VickyFrenzy committed Aug 1, 2020
1 parent dd66d63 commit ca779bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/autorun/xp_rainbow_player_color_cycle.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
AddCSLuaFile()

XP_RPCC = XP_RPCC or {}
XP_RPCC.version = "0.3.1"
XP_RPCC.version = "v1.0.0"

local xp_rpcc_enable = CreateConVar("xp_rpcc_enable", 1, {FCVAR_REPLICATED, FCVAR_SERVER_CAN_EXECUTE}, "Enable the Rainbow Player Color Cycle.")
local xp_rpcc_offset = CreateConVar("xp_rpcc_offset", 1, {FCVAR_REPLICATED, FCVAR_SERVER_CAN_EXECUTE}, "Enable an offset so that players doesn't cycle the same color.")
Expand Down Expand Up @@ -139,7 +139,7 @@ if CLIENT then
panel:ClearControls()
panel:Help("Welcome to the Rainbow Player Color Cycle settings.")
panel:Help("This addon gives you a rainbow color cycle on your player color.")
panel:Help("You are on version " .. XP_RPCC.version)
panel:Help("You are on " .. XP_RPCC.version)
panel:CheckBox("Enable for your player color", "xp_rpcc_cl_enable")
panel:ControlHelp("Enable the rainbow color cycle for your player color.")
panel:CheckBox("Enable for your physgun", "xp_rpcc_cl_physgun")
Expand All @@ -157,4 +157,4 @@ if CLIENT then

end

print("XP_RPCC v" .. XP_RPCC.version .. " loaded!" .. Either(SERVER, " (SV)", " (CL)"))
print("XP_RPCC " .. XP_RPCC.version .. " loaded!" .. Either(SERVER, " (SV)", " (CL)"))

0 comments on commit ca779bd

Please sign in to comment.