Archived
0

Re-wrote BlockPlaceMods

This commit is contained in:
David
2019-01-03 23:24:31 +01:00
parent adbb2c9cb2
commit ff348a6e3f
20 changed files with 586 additions and 886 deletions

View File

@@ -0,0 +1,28 @@
command bpm {
alias set;
alias toggle;
perm blockplacemods.use;
type player;
[empty] {
help Lists the block place mods and their statuses.;
run list_mods;
}
reset [string:mod] {
Help Resets the specified mod's settings to the default value.;
run reset_mod mod;
}
[string:mod] {
help Toggles a block place mod.;
run toggle_mod mod;
}
[string:mod] [string:value] {
help Sets the specified mod's state to the specified value. Only works for mods that have a state.;
run set_mod_value mod value;
}
}