Added rolepersist to the cache

pull/8/head
sgoudham 4 years ago
parent 66a94eba4c
commit 7dbfd7ed2e

@ -61,10 +61,10 @@ def rndColour():
enso_cache = {} enso_cache = {}
def cache(guildid, channel, prefix): def cache(guildid, prefix, channel, rolespersist):
"""Storing GuildID, Modlogs Channel and Prefix in Cache""" """Storing GuildID, Modlogs Channel and Prefix in Cache"""
enso_cache[guildid] = {"Modlogs": channel, "Prefix": prefix} enso_cache[guildid] = {"Modlogs": channel, "Prefix": prefix, "RolesPersist": rolespersist}
def get_cache(guildid): def get_cache(guildid):
@ -79,6 +79,12 @@ def del_cache(guildid):
del enso_cache[guildid] del enso_cache[guildid]
def get_roles_persist(guildid):
"""Returning rolespersist value of the guild"""
return enso_cache[guildid]["RolesPersist"]
# --------------------------------------------!End Cache Section!------------------------------------------------------- # --------------------------------------------!End Cache Section!-------------------------------------------------------
# --------------------------------------------!ModLogs Section!--------------------------------------------------------- # --------------------------------------------!ModLogs Section!---------------------------------------------------------

Loading…
Cancel
Save