Fix PDA capitalization to be PascalCase (#17335)
This commit is contained in:
@@ -15,7 +15,7 @@ namespace Content.Server.PDA.Ringer
|
||||
{
|
||||
public sealed class RingerSystem : SharedRingerSystem
|
||||
{
|
||||
[Dependency] private readonly PDASystem _pda = default!;
|
||||
[Dependency] private readonly PdaSystem _pda = default!;
|
||||
[Dependency] private readonly IRobustRandom _random = default!;
|
||||
[Dependency] private readonly UserInterfaceSystem _ui = default!;
|
||||
[Dependency] private readonly AudioSystem _audio = default!;
|
||||
@@ -74,7 +74,7 @@ namespace Content.Server.PDA.Ringer
|
||||
if (uplink.Code.SequenceEqual(args.Ringtone) && HasComp<StoreComponent>(uid))
|
||||
{
|
||||
uplink.Unlocked = !uplink.Unlocked;
|
||||
if (TryComp<PDAComponent>(uid, out var pda))
|
||||
if (TryComp<PdaComponent>(uid, out var pda))
|
||||
_pda.UpdatePdaUi(uid, pda);
|
||||
|
||||
// can't keep store open after locking it
|
||||
|
||||
Reference in New Issue
Block a user