v1.1.0 #378

Merged
greg6775 merged 32 commits from greg-dev into master 2020-02-20 21:02:19 +01:00
2 changed files with 13 additions and 13 deletions
Showing only changes of commit 91d146f68b - Show all commits

View file

@ -24,15 +24,15 @@ public class RethinkServer {
private Rethink rethink; private Rethink rethink;
String accept_emote = ""; public String accept_emote = "";
String decline_emote = ""; public String decline_emote = "";
String id; public String id;
boolean invite_detect = false; public boolean invite_detect = false;
String message_id = ""; public String message_id = "";
String neededstars = "3"; public String neededstars = "3";
String prefix = "h."; public String prefix = "h.";
String role_id = ""; public String role_id = "";
String starboard = ""; public String starboard = "";
public RethinkServer(JSONObject object, Rethink rethink) { public RethinkServer(JSONObject object, Rethink rethink) {
for (Field field : this.getClass().getDeclaredFields()) { for (Field field : this.getClass().getDeclaredFields()) {

View file

@ -24,10 +24,10 @@ public class RethinkUser {
private Rethink rethink; private Rethink rethink;
String id; public String id;
String prefix = "h."; public String prefix = "h.";
String language = "en"; public String language = "en";
String blacklisted = "none"; public String blacklisted = "none";
public RethinkUser(JSONObject object, Rethink rethink) { public RethinkUser(JSONObject object, Rethink rethink) {
for (Field field : this.getClass().getDeclaredFields()) { for (Field field : this.getClass().getDeclaredFields()) {