Until then, cya'll later!
This commit is contained in:
parent
e69c20be77
commit
535cf70f00
1 changed files with 17 additions and 0 deletions
|
@ -0,0 +1,17 @@
|
||||||
|
package alisolarflare.components.creativeboundaries.commands;
|
||||||
|
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import alisolarflare.architecture.commands.ModCommand;
|
||||||
|
import alisolarflare.components.creativeboundaries.CreativeBoundariesAPI;
|
||||||
|
|
||||||
|
public class SetForceBoundaries extends ModCommand{
|
||||||
|
@Override
|
||||||
|
public boolean OnCommand(Player player, String label, String[] args) {
|
||||||
|
return (CreativeBoundariesAPI.setForceBoundaries(player, args));
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public String[] GetHelpText(String alias){
|
||||||
|
return new String[]{"Usage: /SetForceBoundaries <True/False/0/1>"};
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue