Renamed package

This commit is contained in:
Norbi Peti 2016-04-25 22:03:39 +02:00
parent f9363a7c69
commit 7eaf6178d9
12 changed files with 14 additions and 14 deletions

Binary file not shown.

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair; package io.github.norbipeti.thebuttonmc;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair; package io.github.norbipeti.thebuttonmc;
public class Channel { public class Channel {
public final String DisplayName; public final String DisplayName;

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair; package io.github.norbipeti.thebuttonmc;
import java.net.MalformedURLException; import java.net.MalformedURLException;
import java.net.URL; import java.net.URL;
@ -218,7 +218,7 @@ public class ChatProcessing {
"(?i)" + Pattern.quote("@console"), "(?i)" + Pattern.quote("@console"),
String.format( String.format(
"\",\"color\":\"%s\"},{\"text\":\"§b@console§r\",\"color\":\"blue\"},{\"text\":\"", "\",\"color\":\"%s\"},{\"text\":\"§b@console§r\",\"color\":\"blue\"},{\"text\":\"",
colormode)); //TODO: Add optional username option to setflair colormode));
System.out.println("\007"); System.out.println("\007");
} }
} }

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair; package io.github.norbipeti.thebuttonmc;
import org.apache.commons.io.FileUtils; import org.apache.commons.io.FileUtils;
import org.bukkit.Bukkit; import org.bukkit.Bukkit;
@ -275,7 +275,7 @@ public class Commands implements CommandExecutor {
return true; return true;
} }
case "tableflip": { case "tableflip": {
String msg = "(╯°□°)╯︵ ┻━┻"; String msg = "(╯°□°)╯︵ â”»â”?â”»";
if (args.length > 0) { if (args.length > 0) {
msg = args[0] + " " + msg; msg = args[0] + " " + msg;
} }
@ -283,7 +283,7 @@ public class Commands implements CommandExecutor {
return true; return true;
} }
case "unflip": { case "unflip": {
String msg = "┬─┬ ( ゜-゜ノ)"; String msg = "┬─┬ ã?Ž( ã‚œ-ã‚œã?Ž)";
if (args.length > 0) { if (args.length > 0) {
msg = args[0] + "" + msg; msg = args[0] + "" + msg;
} }

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair; package io.github.norbipeti.thebuttonmc;
import java.util.EnumSet; import java.util.EnumSet;
import java.util.List; import java.util.List;

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair; package io.github.norbipeti.thebuttonmc;
public enum FlairStates { public enum FlairStates {
Accepted, Ignored, Recognised, Commented, NoComment Accepted, Ignored, Recognised, Commented, NoComment

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair; package io.github.norbipeti.thebuttonmc;
import java.io.BufferedInputStream; import java.io.BufferedInputStream;
import java.io.BufferedOutputStream; import java.io.BufferedOutputStream;

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair; package io.github.norbipeti.thebuttonmc;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair; package io.github.norbipeti.thebuttonmc;
import java.util.TimerTask; import java.util.TimerTask;

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair; package io.github.norbipeti.thebuttonmc;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair; package io.github.norbipeti.thebuttonmc;
import net.milkbowl.vault.chat.Chat; import net.milkbowl.vault.chat.Chat;
import net.milkbowl.vault.economy.Economy; import net.milkbowl.vault.economy.Economy;