Maybe this will fix everything
This commit is contained in:
parent
c7cd9a4f26
commit
974b6c8307
1 changed files with 2 additions and 2 deletions
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue