From 05f54edf64611c195e6601457e8c6ba17a98a09a Mon Sep 17 00:00:00 2001 From: Phlox <168133165+yophlox@users.noreply.github.com> Date: Sat, 10 Aug 2024 12:26:33 -0400 Subject: [PATCH] dirty cheater >:) (im testing stuff lol) --- config/eventconf/eventconfParser.go | 4 ++-- config/gameconf/gameconfParser.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/eventconf/eventconfParser.go b/config/eventconf/eventconfParser.go index e74dae6a..0cffeeee 100644 --- a/config/eventconf/eventconfParser.go +++ b/config/eventconf/eventconfParser.go @@ -11,9 +11,9 @@ import ( // defaults // default variable names MUST be "D" + (nameOfVariable) var Defaults = map[string]interface{}{ - "DAllowEvents": false, + "DAllowEvents": true, "DCurrentEvents": []ConfiguredEvent{}, - "DEnforceGlobal": false, + "DEnforceGlobal": true, } var EventTypes = map[string]int64{ diff --git a/config/gameconf/gameconfParser.go b/config/gameconf/gameconfParser.go index 1e04243f..5640baf1 100644 --- a/config/gameconf/gameconfParser.go +++ b/config/gameconf/gameconfParser.go @@ -53,8 +53,8 @@ var Defaults = map[string]interface{}{ "DDefaultSubCharacter": "empty", "DDefaultMainChao": "empty", "DDefaultSubChao": "empty", - "DStartingRings": int64(5000), - "DStartingRedRings": int64(25), + "DStartingRings": int64(9999999999999), + "DStartingRedRings": int64(9999999999999), "DStartingEnergy": int64(5), "DAllItemsFree": true, }