diff --git a/package.json b/package.json index f8f3d82..d529794 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cookiemonsterteam/cookiemonsterframework", - "version": "0.2.2", + "version": "0.2.3", "description": "A package with functions used in the Cookie Monste Mod Framework", "keywords": [ "mod", diff --git a/src/frameworkDataObject/menuSections/addMenu.js b/src/frameworkDataObject/menuSections/addMenu.js index abd2663..e59c5e2 100644 --- a/src/frameworkDataObject/menuSections/addMenu.js +++ b/src/frameworkDataObject/menuSections/addMenu.js @@ -1,5 +1,5 @@ import addInfoMenuSection from './info/addInfoMenuSection'; -import addOptionsMenuSection from './options/addOptionsMenuSection'; +// import addOptionsMenuSection from './options/addOptionsMenuSection'; /** * Call the function to add a Menu based on the current menu @@ -12,7 +12,8 @@ export default function addMenu(_, observer) { if (Game.onMenu === 'log') { addInfoMenuSection(); } else if (Game.onMenu === 'prefs') { - addOptionsMenuSection(); + // Commented out because this is broken + // addOptionsMenuSection(); } // Reconnect observer to monitor changes