Change to adding a stub function instead

This commit is contained in:
lewri
2025-06-12 18:20:19 +01:00
parent c6b7b48825
commit c24545d098

View File

@@ -39,11 +39,15 @@ function GrimReaper:tickDay()
return false
end
function GrimReaper:updateDynamicInfo()
-- The grim reaper has no dynamic info to update.
end
function GrimReaper:afterLoad(old, new)
if old < 213 then
self.mood_marker = 2
end
-- The grim repear has no dynamic info currently, so don't refresh it
self:updateDynamicInfo()
Humanoid.afterLoad(self, old, new)
end