refactor: change meaning

This commit is contained in:
aro 2022-12-05 16:22:55 +01:00
parent 159d0209fb
commit 93efcd2536
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ public class MainGUI {
"# % # R B P # % #",
"# % # N A S # % #",
"# % % % % % % % #",
"E # # # # # # # P"};
"E # # # # # # # #"};
public MainGUI(Player player) {
if (!player.hasPermission("nicko.admin") || !player.isOp()) {

View file

@ -17,7 +17,7 @@ public class ResetItem extends BaseItem {
public ItemProvider getItemProvider() {
final ItemBuilder builder = new ItemBuilder(Material.TNT);
builder.setDisplayName("§fReset");
builder.addLoreLines("§7Removes your disguise.");
builder.addLoreLines("§7Get rid of your disguise.");
return builder;
}