diff --git a/Content.Shared/Light/EntitySystems/SharedLightBulbSystem.cs b/Content.Shared/Light/EntitySystems/SharedLightBulbSystem.cs index 34c986b4de..b2e9720984 100644 --- a/Content.Shared/Light/EntitySystems/SharedLightBulbSystem.cs +++ b/Content.Shared/Light/EntitySystems/SharedLightBulbSystem.cs @@ -22,8 +22,7 @@ public abstract class SharedLightBulbSystem : EntitySystem private void OnInit(EntityUid uid, LightBulbComponent bulb, ComponentInit args) { // update default state of bulbs - SetColor(uid, bulb.Color, bulb); - SetState(uid, bulb.State, bulb); + UpdateAppearance(uid, bulb); } private void HandleLand(EntityUid uid, LightBulbComponent bulb, ref LandEvent args)