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;

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair;
package io.github.norbipeti.thebuttonmc;
public class Channel {
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.URL;
@ -218,7 +218,7 @@ public class ChatProcessing {
"(?i)" + Pattern.quote("@console"),
String.format(
"\",\"color\":\"%s\"},{\"text\":\"§b@console§r\",\"color\":\"blue\"},{\"text\":\"",
colormode)); //TODO: Add optional username option to setflair
colormode));
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.bukkit.Bukkit;
@ -275,7 +275,7 @@ public class Commands implements CommandExecutor {
return true;
}
case "tableflip": {
String msg = "(╯°□°)╯︵ ┻━┻";
String msg = "(╯°□°)╯︵ ┻�┻";
if (args.length > 0) {
msg = args[0] + " " + msg;
}
@ -283,7 +283,7 @@ public class Commands implements CommandExecutor {
return true;
}
case "unflip": {
String msg = "┬─┬ ( ゜-゜ノ)";
String msg = "┬─┬ �( ゜-゜�)";
if (args.length > 0) {
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.List;

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair;
package io.github.norbipeti.thebuttonmc;
public enum FlairStates {
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.BufferedOutputStream;

View file

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

View file

@ -1,4 +1,4 @@
package tk.sznp.thebuttonautoflair;
package io.github.norbipeti.thebuttonmc;
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.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.economy.Economy;