From 65f5f71a39239c6ffa292dd20dc7f84467e3cc48 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 20 Apr 2020 09:44:11 +0200 Subject: [PATCH] Allow Supply of PowerGenerator to be VV'd --- .../GameObjects/Components/Power/PowerGeneratorComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameObjects/Components/Power/PowerGeneratorComponent.cs b/Content.Server/GameObjects/Components/Power/PowerGeneratorComponent.cs index c2ac6203a6..e9285e7541 100644 --- a/Content.Server/GameObjects/Components/Power/PowerGeneratorComponent.cs +++ b/Content.Server/GameObjects/Components/Power/PowerGeneratorComponent.cs @@ -16,7 +16,7 @@ namespace Content.Server.GameObjects.Components.Power /// Power supply from this entity /// private float _supply = 1000; //arbitrary initial magic number to start - [ViewVariables] + [ViewVariables(VVAccess.ReadWrite)] public float Supply { get => _supply;