Aurora Australis (#12356)

This commit is contained in:
metalgearsloth
2022-11-24 18:31:17 +11:00
committed by GitHub
parent 5a6f30fb74
commit 80bb8e3bf6
3 changed files with 12 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ public abstract class SharedRgbLightControllerSystem : EntitySystem
return;
rgb.Layers = layers;
rgb.Dirty();
Dirty(rgb);
}
public void SetCycleRate(EntityUid uid, float rate, RgbLightControllerComponent? rgb = null)
@@ -32,6 +32,6 @@ public abstract class SharedRgbLightControllerSystem : EntitySystem
return;
rgb.CycleRate = Math.Clamp(0.01f, rate, 1); // lets not give people seizures
rgb.Dirty();
Dirty(rgb);
}
}