Merge pull request #146 from BigBotNetwork/greg-dev
Maybe this will fix everything
This commit is contained in:
commit
bbc6b7c108
1 changed files with 2 additions and 2 deletions
|
|
@ -166,11 +166,11 @@ public class Rethink {
|
|||
}
|
||||
|
||||
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) {
|
||||
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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue