@@ -42,6 +42,7 @@ public class InitialPlayerSync : Packet
4242 public SessionSettings SessionSettings { get ; }
4343 public bool InPrecursor { get ; }
4444 public bool DisplaySurfaceWater { get ; }
45+ public bool MarkDeathPointsWithBeacon { get ; }
4546
4647 public InitialPlayerSync ( NitroxId playerGameObjectId ,
4748 bool firstTimeConnecting ,
@@ -68,7 +69,8 @@ public InitialPlayerSync(NitroxId playerGameObjectId,
6869 bool keepInventoryOnDeath ,
6970 SessionSettings sessionSettings ,
7071 bool inPrecursor ,
71- bool displaySurfaceWater )
72+ bool displaySurfaceWater ,
73+ bool markDeathPointsWithBeacon )
7274 {
7375 AssignedEscapePodId = assignedEscapePodId ;
7476 PlayerGameObjectId = playerGameObjectId ;
@@ -96,6 +98,7 @@ public InitialPlayerSync(NitroxId playerGameObjectId,
9698 SessionSettings = sessionSettings ;
9799 InPrecursor = inPrecursor ;
98100 DisplaySurfaceWater = displaySurfaceWater ;
101+ MarkDeathPointsWithBeacon = markDeathPointsWithBeacon ;
99102 }
100103
101104 /// <remarks>Used for deserialization</remarks>
@@ -125,7 +128,8 @@ public InitialPlayerSync(
125128 bool keepInventoryOnDeath ,
126129 SessionSettings sessionSettings ,
127130 bool inPrecursor ,
128- bool displaySurfaceWater )
131+ bool displaySurfaceWater ,
132+ bool markDeathPointsWithBeacon )
129133 {
130134 AssignedEscapePodId = assignedEscapePodId ;
131135 PlayerGameObjectId = playerGameObjectId ;
@@ -153,6 +157,7 @@ public InitialPlayerSync(
153157 SessionSettings = sessionSettings ;
154158 InPrecursor = inPrecursor ;
155159 DisplaySurfaceWater = displaySurfaceWater ;
160+ MarkDeathPointsWithBeacon = markDeathPointsWithBeacon ;
156161 }
157162 }
158163}
0 commit comments