Reformat 'PoweredIdle' to 'Idle'

This commit is contained in:
FL-OZ
2020-05-01 03:38:48 -05:00
parent b2aca9a686
commit a5fa184765
3 changed files with 5 additions and 6 deletions

View File

@@ -83,7 +83,7 @@ namespace Content.Server.GameObjects.Components.Kitchen
_entityManager.SpawnEntity(r.Result, Owner.Transform.GridPosition);
_audioSystem.Play("/Audio/machines/ding.ogg");
SetAppearance(MicrowaveVisualState.PoweredIdle);
SetAppearance(MicrowaveVisualState.Idle);
});
return;
}
@@ -95,7 +95,7 @@ namespace Content.Server.GameObjects.Components.Kitchen
_contents.RemoveAllSolution();
_entityManager.SpawnEntity(_badRecipeName, Owner.Transform.GridPosition);
_audioSystem.Play("/Audio/machines/ding.ogg");
SetAppearance(MicrowaveVisualState.PoweredIdle);
SetAppearance(MicrowaveVisualState.Idle);
});
}