* Make nukies usable - Spawn points that work - Radar default range bumped up - Used the infiltrator instead - Spawning works I playtested it and it was working so anything new pops up then I'm gonna screm. * a
10 lines
207 B
C#
10 lines
207 B
C#
namespace Content.Server.Radar;
|
|
|
|
[RegisterComponent]
|
|
public sealed class RadarConsoleComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField("range")]
|
|
public float Range = 512f;
|
|
}
|