Merge changes with conflicting repository.
This commit is contained in:
commit
4ee2b40397
1
BandoriBot/.gitignore
vendored
1
BandoriBot/.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
/bin/
|
/bin/
|
||||||
|
/BandoriBot.jar
|
||||||
|
Binary file not shown.
1
BandoriBot/src/sig/.gitignore
vendored
Normal file
1
BandoriBot/src/sig/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/BandoriBot.java
|
@ -170,6 +170,9 @@ public class BandoriBot extends ListenerAdapter{
|
|||||||
FileReader rd = new FileReader(store_file);
|
FileReader rd = new FileReader(store_file);
|
||||||
BufferedReader reader = new BufferedReader(rd);
|
BufferedReader reader = new BufferedReader(rd);
|
||||||
String status = reader.readLine();
|
String status = reader.readLine();
|
||||||
|
if (status==null) {
|
||||||
|
status = "";
|
||||||
|
}
|
||||||
UpdateBotStatus(status,900 + (int)((90*60)*Math.random()));
|
UpdateBotStatus(status,900 + (int)((90*60)*Math.random()));
|
||||||
reader.close();
|
reader.close();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
@ -312,6 +315,12 @@ public class BandoriBot extends ListenerAdapter{
|
|||||||
stamp_map.put("sayo_im_sorry",Arrays.asList("sorry","gomen","apologize","somethingwrong","forgive"));
|
stamp_map.put("sayo_im_sorry",Arrays.asList("sorry","gomen","apologize","somethingwrong","forgive"));
|
||||||
stamp_map.put("hagumi_hooray",Arrays.asList("hooray","hiphip","whoo","yahoo"));
|
stamp_map.put("hagumi_hooray",Arrays.asList("hooray","hiphip","whoo","yahoo"));
|
||||||
stamp_map.put("kanon_keepgoing",Arrays.asList("keepgoing","dontstop","youcandoit","makeit","gaja","petan","pettan","pengu"));
|
stamp_map.put("kanon_keepgoing",Arrays.asList("keepgoing","dontstop","youcandoit","makeit","gaja","petan","pettan","pengu"));
|
||||||
|
stamp_map.put("tsugumi_amazing",Arrays.asList("amazing","wow","sugoi","wooo","cool!","tsugurific"));
|
||||||
|
|
||||||
|
|
||||||
|
/// BOT ONLY!!! DO NOT ADD THE BELOW LINES TO BANDORI MODULE IN SIGIRC!!!
|
||||||
|
stamp_map.put("aya_pressure",Arrays.asList("feelingheavy","thisfeeling","pressure","toomuch","waa","ahhhhh","ayya"));
|
||||||
|
stamp_map.put("aya_miracles",Arrays.asList("miracles","wishes","cometrue","dreams","ayaay"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void checkForStamp(MessageChannel channel, String user,String message) {
|
public static void checkForStamp(MessageChannel channel, String user,String message) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user