Fixed F Perms Lore String in Config
This commit is contained in:
parent
bd26d98449
commit
c93d2f235a
@ -69,11 +69,11 @@ public class CmdStrikeSet extends FCommand {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private String getReason() {
|
private String getReason() {
|
||||||
String reason = "";
|
StringBuilder reason = new StringBuilder();
|
||||||
for (int i = 3; i < args.size(); i++) {
|
for (int i = 3; i < args.size(); i++) {
|
||||||
reason += args.get(i) + " ";
|
reason.append(args.get(i)).append(" ");
|
||||||
}
|
}
|
||||||
return reason;
|
return reason.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -514,18 +514,18 @@ fperm-gui:
|
|||||||
# {action-access-color} Access color eg: Allow;GREEN
|
# {action-access-color} Access color eg: Allow;GREEN
|
||||||
placeholder-item:
|
placeholder-item:
|
||||||
name: '&e&l(!) &ePermission: &6&n{action}'
|
name: '&e&l(!) &ePermission: &6&n{action}'
|
||||||
lore:
|
Lore:
|
||||||
- ''
|
- ''
|
||||||
- '&6&l * &eStatus: &8[{action-access-color}{action-access}&8]'
|
- '&6&l * &eStatus: &8[{action-access-color}{action-access}&8]'
|
||||||
- ''
|
- ''
|
||||||
- '&7Left click to &a&nAllow&7.'
|
- '&7Left click to &a&nAllow&7.'
|
||||||
- '&7Right click to &c&nDeny&7.'
|
- '&7Right click to &c&nDeny&7.'
|
||||||
- '&7Middle click to &7&nUndefine&7.'
|
- '&7Middle click to &7&nUndefined&7.'
|
||||||
# Back item will be take you to the previous GUI
|
# Back item will be take you to the previous GUI
|
||||||
back-item:
|
back-item:
|
||||||
Type: ARROW
|
Type: ARROW
|
||||||
Name: '&c&l<- Back'
|
Name: '&c&l<- Back'
|
||||||
lore:
|
Lore:
|
||||||
- '&7Click to return to previous menu.'
|
- '&7Click to return to previous menu.'
|
||||||
# Dummy Items
|
# Dummy Items
|
||||||
dummy-item:
|
dummy-item:
|
||||||
|
Loading…
Reference in New Issue
Block a user