We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 545cd48 commit bb4d94cCopy full SHA for bb4d94c
OpenDreamClient/Rendering/AtomGlideSystem.cs
@@ -52,7 +52,7 @@ public override void FrameUpdate(float frameTime) {
52
for (int i = 0; i < _currentGlides.Count; i++) {
53
var glide = _currentGlides[i];
54
55
- if (glide.Sprite.Icon.Appearance == null) {
+ if (_entityManager.Deleted(glide.Uid) || glide.Sprite.Icon.Appearance == null) {
56
_currentGlides.RemoveSwap(i--);
57
continue;
58
}
0 commit comments