Skip to content

Commit

Permalink
remove testing
Browse files Browse the repository at this point in the history
  • Loading branch information
moom0o committed Mar 3, 2021
1 parent 35bfe8a commit b432450
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/main/java/me/moomoo/restartplugin/RestartPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

public class RestartPlugin extends JavaPlugin implements Listener {
FileConfiguration config = getConfig();
boolean playerslow = false;

public void onEnable() {
saveDefaultConfig();
System.out.println("[ENABLED] moomoo's 2b2t restart notifications plugin");
Expand Down Expand Up @@ -48,13 +50,13 @@ public void onEnable() {
public void restart() throws InterruptedException {
String s = translate(get("string"));
b(translate(s + " 15" + get("minutestring")));
sleep(1000);
sleep(300000);
b(translate(s + " 10" + get("minutestring")));
sleep(1000);
sleep(300000);
b(translate(s + " 5" + get("minutestring")));
sleep(1000);
sleep(180000);
b(translate(s + " 2" + get("minutestring")));
sleep(1000);
sleep(105000);
b(translate(s + " 15" + get("secondsstring")));
sleep(1000);
b(translate(s + " 14" + get("secondsstring")));
Expand Down

0 comments on commit b432450

Please sign in to comment.