Musician PDA quick fix (#7018)

This commit is contained in:
Alex Evgrashin
2022-03-07 14:41:50 +03:00
committed by GitHub
parent c4ecb1678a
commit 5f632e20ad
8 changed files with 49 additions and 12 deletions

View File

@@ -13,13 +13,15 @@ namespace Content.Shared.PDA
public bool HasPen;
public PDAIdInfoText PDAOwnerInfo;
public bool HasUplink;
public bool CanPlayMusic;
public PDAUpdateState(bool flashlightEnabled, bool hasPen, PDAIdInfoText pDAOwnerInfo, bool hasUplink = false)
public PDAUpdateState(bool flashlightEnabled, bool hasPen, PDAIdInfoText pDAOwnerInfo, bool hasUplink = false, bool canPlayMusic = false)
{
FlashlightEnabled = flashlightEnabled;
HasPen = hasPen;
PDAOwnerInfo = pDAOwnerInfo;
HasUplink = hasUplink;
CanPlayMusic = canPlayMusic;
}
}