public ShareSuite()
 {
     InitWrap();
     On.RoR2.Console.Awake += (orig, self) =>
     {
         CommandHelper.RegisterCommands(self);
         FrogtownInterface.Init(Config);
         orig(self);
     };
     // Register all the hooks
     Hooks.OnGrantItem();
     Hooks.OnShopPurchase();
     Hooks.OnPurchaseDrop();
     Hooks.DisableInteractablesScaling();
     Hooks.ModifyGoldReward();
     Hooks.SplitTpMoney();
     Hooks.FixBoss();
 }
 public ShareSuite()
 {
     InitWrap();
     On.RoR2.Console.Awake += (orig, self) =>
     {
         CommandHelper.RegisterCommands(self);
         FrogtownInterface.Init(Config);
         orig(self);
     };
     // Register all the hooks
     Hooks.OnGrantItem();
     Hooks.OnGrantEquipment();
     Hooks.OnShopPurchase();
     Hooks.OnPurchaseDrop();
     Hooks.OverrideInteractablesScaling();
     Hooks.ModifyGoldReward();
     Hooks.SplitTpMoney();
     Hooks.BrittleCrownHook();
     // Hooks.PickupFix();
     Hooks.OverrideBossScaling();
 }