mirror of
https://github.com/tobspr/shapez.io.git
synced 2026-03-02 03:39:21 +00:00
Fix discount being active in standalone
This commit is contained in:
@@ -169,4 +169,5 @@ if (G_IS_DEV && globalConfig.debug.noArtificialDelays) {
|
||||
globalConfig.warmupTimeSecondsRegular = 0;
|
||||
}
|
||||
|
||||
globalConfig.currentDiscount.active = new Date().getTime() < globalConfig.currentDiscount.until;
|
||||
globalConfig.currentDiscount.active =
|
||||
!G_IS_STANDALONE && new Date().getTime() < globalConfig.currentDiscount.until;
|
||||
|
||||
Reference in New Issue
Block a user