Predict PoweredLights (#36541)
* Move PoweredLight to shared * Predict the rest of the owl * reacher * compinit & anim * Fix names * Revert this? * Fix these * chicken drummies * deita * Fix * review * fix * fixes * fix PVS weirdness --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
This commit is contained in:
@@ -14,9 +14,12 @@ namespace Content.Server.Power.Components
|
||||
/// <summary>
|
||||
/// Amount of charge this needs from an APC per second to function.
|
||||
/// </summary>
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
[DataField("powerLoad")]
|
||||
public float Load { get => NetworkLoad.DesiredPower; set => NetworkLoad.DesiredPower = value; }
|
||||
public override float Load
|
||||
{
|
||||
get => NetworkLoad.DesiredPower;
|
||||
set => NetworkLoad.DesiredPower = value;
|
||||
}
|
||||
|
||||
public ApcPowerProviderComponent? Provider = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user