-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
Timers/addons/timers/buffs.lua
Line 584 in 29bb5fd
| if (t_entity and t_entity.ServerId) ~= (a_entity and a_entity.ServerId) then |
This causes the addon to crash with the error attempt to index local 't_entity' (a nil value) when a buff is cast on a Trust when they despawn. The fix is the following:
if (t_entity and a_entity and (t_entity.ServerId ~= a_entity.ServerId)) thenThis will cause the buff to properly clear out of the list.
Metadata
Metadata
Assignees
Labels
No labels