This commit is contained in:
brenoepic 2022-04-29 22:36:24 -03:00
parent d54b9dba92
commit 354b86ed01
2 changed files with 5 additions and 6 deletions

View File

@ -21,7 +21,6 @@ import java.sql.ResultSet;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collections;
public class Bot implements Runnable { public class Bot implements Runnable {
private static final Logger LOGGER = LoggerFactory.getLogger(Bot.class); private static final Logger LOGGER = LoggerFactory.getLogger(Bot.class);
@ -48,7 +47,7 @@ public class Bot implements Runnable {
private int bubble; private int bubble;
private String type; private final String type;
private int effect; private int effect;
@ -111,7 +110,7 @@ public class Bot implements Runnable {
this.chatRandom = false; this.chatRandom = false;
this.chatDelay = 10; this.chatDelay = 10;
this.chatTimeOut = Emulator.getIntUnixTimestamp() + this.chatDelay; this.chatTimeOut = Emulator.getIntUnixTimestamp() + this.chatDelay;
this.chatLines = new ArrayList<>(Collections.singletonList("Default Message :D")); this.chatLines = new ArrayList<>(Arrays.asList("Default Message :D"));
this.type = bot.getType(); this.type = bot.getType();
this.effect = bot.getEffect(); this.effect = bot.getEffect();
this.bubble = bot.getBubbleId(); this.bubble = bot.getBubbleId();
@ -119,7 +118,7 @@ public class Bot implements Runnable {
this.needsUpdate = false; this.needsUpdate = false;
} }
public void initialise() { public static void initialise() {
} }

View File

@ -12,7 +12,7 @@ import java.text.SimpleDateFormat;
import java.util.Date; import java.util.Date;
public class VisitorBot extends Bot { public class VisitorBot extends Bot {
private SimpleDateFormat DATE_FORMAT; public static SimpleDateFormat DATE_FORMAT;
private boolean showedLog = false; private boolean showedLog = false;
private THashSet<ModToolRoomVisit> visits = new THashSet<>(3); private THashSet<ModToolRoomVisit> visits = new THashSet<>(3);
@ -24,7 +24,7 @@ public class VisitorBot extends Bot {
super(bot); super(bot);
} }
public void initialise() { public static void initialise() {
DATE_FORMAT = new SimpleDateFormat(Emulator.getConfig().getValue("bots.visitor.dateformat")); DATE_FORMAT = new SimpleDateFormat(Emulator.getConfig().getValue("bots.visitor.dateformat"));
} }