Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Robust.Shared/GameObjects/Components/Eye/EyeComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public sealed partial class EyeComponent : Component
[DataField, AutoNetworkedField]
public bool DrawFov = true;

[AutoNetworkedField]
[DataField, AutoNetworkedField]
public bool DrawLight = true;

// yes it's not networked, don't ask.
Expand Down
2 changes: 1 addition & 1 deletion Robust.Shared/Graphics/Eye.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class Eye : IEye
private MapCoordinates _coords;

/// <inheritdoc />
[ViewVariables(VVAccess.ReadWrite)]
[ViewVariables]
public bool DrawFov { get; set; } = true;

/// <inheritdoc />
Expand Down
Loading