mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 07:20:50 +01:00
cleanup
This commit is contained in:
parent
d54b9dba92
commit
354b86ed01
@ -21,7 +21,6 @@ import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
|
||||
public class Bot implements Runnable {
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(Bot.class);
|
||||
@ -48,7 +47,7 @@ public class Bot implements Runnable {
|
||||
private int bubble;
|
||||
|
||||
|
||||
private String type;
|
||||
private final String type;
|
||||
|
||||
|
||||
private int effect;
|
||||
@ -111,7 +110,7 @@ public class Bot implements Runnable {
|
||||
this.chatRandom = false;
|
||||
this.chatDelay = 10;
|
||||
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.effect = bot.getEffect();
|
||||
this.bubble = bot.getBubbleId();
|
||||
@ -119,7 +118,7 @@ public class Bot implements Runnable {
|
||||
this.needsUpdate = false;
|
||||
}
|
||||
|
||||
public void initialise() {
|
||||
public static void initialise() {
|
||||
|
||||
}
|
||||
|
||||
|
@ -12,7 +12,7 @@ import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
||||
|
||||
public class VisitorBot extends Bot {
|
||||
private SimpleDateFormat DATE_FORMAT;
|
||||
public static SimpleDateFormat DATE_FORMAT;
|
||||
private boolean showedLog = false;
|
||||
private THashSet<ModToolRoomVisit> visits = new THashSet<>(3);
|
||||
|
||||
@ -24,7 +24,7 @@ public class VisitorBot extends Bot {
|
||||
super(bot);
|
||||
}
|
||||
|
||||
public void initialise() {
|
||||
public static void initialise() {
|
||||
DATE_FORMAT = new SimpleDateFormat(Emulator.getConfig().getValue("bots.visitor.dateformat"));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user