Fixes UseDelay accumulating time sometimes (#23529)

a
This commit is contained in:
AJCM-git
2024-01-04 13:50:11 -04:00
committed by GitHub
parent eed663e8b4
commit 3502f5d3db

View File

@@ -25,7 +25,7 @@ public sealed class UseDelaySystem : EntitySystem
if (ent.Comp.Delay == delay) if (ent.Comp.Delay == delay)
return; return;
ent.Comp.Delay += delay; ent.Comp.Delay = delay;
Dirty(ent); Dirty(ent);
} }