/item no longer requires cheats

This commit is contained in:
ForestOfLight
2025-09-18 10:31:23 -07:00
Unverified
parent 48cc3cbf21
commit 6e1883edd0
+3 -2
View File
@@ -18,9 +18,10 @@ system.beforeEvents.startup.subscribe((event) => {
const command = {
name: 'construct:item',
description: 'Gives you the Construct item. Use it to open the Construct menu.',
permissionLevel: CommandPermissionLevel.Any
permissionLevel: CommandPermissionLevel.Any,
cheatsRequired: false
};
event.customCommandRegistry.registerCommand(command, givePlayerConstructItem)
event.customCommandRegistry.registerCommand(command, givePlayerConstructItem);
});
function givePlayerConstructItem(origin) {