This commit is contained in:
deathbybandaid 2022-02-09 12:59:45 -05:00
parent f53f62e80c
commit 9366542aeb

View File

@ -12,5 +12,5 @@ class SpiceBotCore_OBJ():
Quick and dirty shortcuts. Will only get called for undefined attributes. Quick and dirty shortcuts. Will only get called for undefined attributes.
""" """
if hasattr(self.fhdhr, name): if hasattr(self, name):
return eval("self.fhdhr.%s" % name) return eval("self.%s" % name)