Merge #150

Merged
greg6775 merged 18 commits from master into greg-dev 2019-12-03 18:15:28 +01:00
Showing only changes of commit bbc6b7c108 - Show all commits

View file

@ -166,11 +166,11 @@ public class Rethink {
} }
public String getRulesAEmote(String guild_id) { public String getRulesAEmote(String guild_id) {
return (String) this.get("server", "id", guild_id, "accept_emote"); return this.get("server", "id", guild_id, "accept_emote").toString().replaceAll("\"", "");
} }
public String getRulesDEmote(String guild_id) { public String getRulesDEmote(String guild_id) {
return (String) this.get("server", "id", guild_id, "decline_emote"); return this.get("server", "id", guild_id, "decline_emote").toString().replaceAll("\"", "");
} }
public void setInviteDetection(String guild_id, boolean b) { public void setInviteDetection(String guild_id, boolean b) {