Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Donor GUI Update #10

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/net/kineticraft/lostcity/guis/donor/GUIDonor.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void addItems() {
"Right-Click: " + ChatColor.WHITE + "Reset Icon")
.leftClick(e -> {
getPlayer().sendMessage(ChatColor.GREEN + "Please enter your new icon.");
getPlayer().sendMessage(ChatColor.GREEN + "Visit http://www.thegenxmom.com/hippies/index_files/textsy.html for examples.");
getPlayer().sendMessage(ChatColor.GREEN + "Visit https://unicode-table.com/en/#01A9 for examples.");
Callbacks.listenForChat(getPlayer(), msg -> {
String icon = ChatColor.translateAlternateColorCodes('&', msg);
String noColor = ChatColor.stripColor(icon);
Expand Down
2 changes: 1 addition & 1 deletion src/net/kineticraft/lostcity/mechanics/Punishments.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public enum PunishmentType {
SPAM("Spamming", 2, Material.PORK),
HARASSMENT("Harassment", 2, Material.LAVA_BUCKET),
ADVERTISING("Advertising", 2, Material.BOOK_AND_QUILL),
AUTO_RELOG("Auto Relogger", 2, Material.IRON_DOOR),
AFK_BYPASS("AFK Bypass", 2, Material.IRON_DOOR),
TOXICITY("Toxicity", 3, Material.POISONOUS_POTATO),
SLURS("Slurs", 7, Material.GOLD_HOE),
THREATS("Threats", 7, Material.IRON_SWORD),
Expand Down