diff --git a/Source/Scripts/World/BoostedXp.cs b/Source/Scripts/World/BoostedXp.cs index b5ca180f2..316d1b50e 100644 --- a/Source/Scripts/World/BoostedXp.cs +++ b/Source/Scripts/World/BoostedXp.cs @@ -34,7 +34,7 @@ namespace Scripts.World bool IsXPBoostActive() { - var now = Time.UnixTimeToDateTime(GameTime.GetGameTime())); + var now = Time.UnixTimeToDateTime(GameTime.GetGameTime()); uint weekdayMaskBoosted = WorldConfig.GetUIntValue(WorldCfg.XpBoostDaymask); uint weekdayMask = (1u << now.Day); bool currentDayBoosted = (weekdayMask & weekdayMaskBoosted) != 0;