Rename to Construct

This commit is contained in:
ForestOfLight
2025-04-19 14:15:19 -07:00
Unverified
parent 53438f3c60
commit 5e2da6e3ab
46 changed files with 102 additions and 57 deletions
@@ -0,0 +1,9 @@
export const BlockVerificationLevel = Object.freeze({
Unknown: 0,
NoMatch: 1,
TypeMatch: 2,
Match: 3,
Missing: 4,
Air: 5,
Skipped: 6
});
@@ -0,0 +1,14 @@
export const InstanceEditButtons = Object.freeze({
Unknown: 'Unknown',
MainMenu: '<<',
Place: '§aPlace Instance',
Enable: '§aEnable Instance',
Disable: '§cDisable Instance',
Rename: 'Rename Instance',
Delete: '§cDelete Instance',
NextLayer: 'Increase Layer',
PreviousLayer: 'Decrease Layer',
Move: 'Move Here',
Statistics: 'Statistics',
Settings: 'Settings'
});