Adds the station name to PDAs (#9987)

Co-authored-by: ike709 <ike709@github.com>
This commit is contained in:
ike709
2022-07-23 18:58:28 -07:00
committed by GitHub
parent e78ede1988
commit c65cf5bb1f
6 changed files with 40 additions and 7 deletions

View File

@@ -9,16 +9,18 @@ namespace Content.Shared.PDA
public bool FlashlightEnabled;
public bool HasPen;
public PDAIdInfoText PDAOwnerInfo;
public string? StationName;
public bool HasUplink;
public bool CanPlayMusic;
public PDAUpdateState(bool flashlightEnabled, bool hasPen, PDAIdInfoText pDAOwnerInfo, bool hasUplink = false, bool canPlayMusic = false)
public PDAUpdateState(bool flashlightEnabled, bool hasPen, PDAIdInfoText pDAOwnerInfo, string? stationName, bool hasUplink = false, bool canPlayMusic = false)
{
FlashlightEnabled = flashlightEnabled;
HasPen = hasPen;
PDAOwnerInfo = pDAOwnerInfo;
HasUplink = hasUplink;
CanPlayMusic = canPlayMusic;
StationName = stationName;
}
}