Skip to content

Commit

Permalink
Stop adding option menu and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielNoord committed Sep 29, 2021
1 parent 0148219 commit 1d59bc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
5 changes: 3 additions & 2 deletions src/frameworkDataObject/menuSections/addMenu.js
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit 1d59bc2

Please sign in to comment.