22 lines
734 B
JavaScript
22 lines
734 B
JavaScript
import { menuFunctions } from '@cookiemonsterteam/cookiemonsterframework';
|
|
import { LatestReleaseNotes, ModDescription } from '../../Data/Moddata';
|
|
|
|
/**
|
|
* Creates the <div> to be added to the Info section
|
|
* @returns {object} menuDiv Object of the <div> of Cookie Monster in info tab
|
|
*/
|
|
export default function createMenuInfo() {
|
|
const menuDiv = menuFunctions.createModMenuSection(
|
|
'cookieMonsterMod',
|
|
'Cookie Monster',
|
|
'infoMenu',
|
|
);
|
|
|
|
if (Game.mods.cookieMonsterFramework.saveData.cookieMonsterMod.headers.infoMenu) {
|
|
menuDiv.appendChild(menuFunctions.listings.createInfoListing(ModDescription));
|
|
menuDiv.appendChild(menuFunctions.listings.createInfoListing(LatestReleaseNotes));
|
|
}
|
|
|
|
return menuDiv;
|
|
}
|