From 4fca4659a139b82479ee8d1cb4e927af64afbbb6 Mon Sep 17 00:00:00 2001 From: Kara Date: Fri, 31 May 2024 13:12:38 -0700 Subject: [PATCH] Update basic-networking-and-you.md remove access markers on ID comp, probably just serves to confuse people reading it when we're focussing on the network part --- src/en/ss14-by-example/basic-networking-and-you.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/en/ss14-by-example/basic-networking-and-you.md b/src/en/ss14-by-example/basic-networking-and-you.md index 4e2584712..e0b41875e 100644 --- a/src/en/ss14-by-example/basic-networking-and-you.md +++ b/src/en/ss14-by-example/basic-networking-and-you.md @@ -31,13 +31,10 @@ An example of all of the networking code required for IDCardComponent now, from // IDCardComponent.cs [RegisterComponent, NetworkedComponent] [AutoGenerateComponentState] -[Access(typeof(SharedIdCardSystem), typeof(SharedPDASystem), typeof(SharedAgentIdCardSystem))] public sealed partial class IdCardComponent : Component { [DataField] [AutoNetworkedField] - [Access(typeof(SharedIdCardSystem), typeof(SharedPDASystem), typeof(SharedAgentIdCardSystem), - Other = AccessPermissions.ReadWrite)] // FIXME Friends public string? FullName; [DataField]