You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When setting cache values, I personally don't really want to do cache:set('human', false) instead I like doing cache.human = false, although this does indeed set the value it doesn't trigger the event meaning onCache wouldn't be told the value changed!
Is your feature request related to a problem? Please describe.
cache:set('human', false)
instead I like doingcache.human = false
, although this does indeed set the value it doesn't trigger the event meaning onCache wouldn't be told the value changed!Describe the solution you'd like
The cache metatable right now
can we just add this into the metatable
this should make it where the onCache works properly when setting with
cache.human = true
, unless im just a retard <3Additional context
no..
The text was updated successfully, but these errors were encountered: