v1.0.1 #355

Merged
greg6775 merged 58 commits from greg-dev into master 2020-02-02 19:06:01 +01:00
2 changed files with 13 additions and 13 deletions
Showing only changes of commit 6fc9dd126b - Show all commits

View file

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