Compare commits

..

No commits in common. "c150ed6be10b1c716855191c04ef2af5c195b8bd" and "a840a5fa83852bc49c55a2b32eebc4e4579b3c9d" have entirely different histories.

View File

@ -212,20 +212,16 @@ end
local cv_spb_separate = CV_RegisterVar({
name = "lb_spb_combined",
defaultvalue = 1,
flags = CV_NETVAR | CV_CALL | CV_NOINIT,
flags = CV_NETVAR | CV_CALL,
PossibleValue = CV_YesNo,
func = function(v)
local curSep = ST_SEP
if v.value then
ST_SEP = F_SPBATK
else
ST_SEP = F_SPBATK | F_SPBBIG | F_SPBEXP
end
if curSep != ST_SEP then
reinit_lb()
end
reinit_lb()
end
})