revert canopy command to open menu

This commit is contained in:
ForestOfLight
2025-06-07 21:53:38 -07:00
Unverified
parent 42bd7e9023
commit 1528ebdbbb
+1 -4
View File
@@ -10,10 +10,7 @@ const menuCmd = new Command({
name: 'construct',
description: { text: 'Gives you the Construct item. Use it to open the Construct menu.' },
usage: 'construct',
callback: (sender) => {
const origin = { sourceEntity: sender };
givePlayerConstructItem(origin);
}
callback: (sender) => openMenu(sender)
});
extension.addCommand(menuCmd);