Fix PDA capitalization to be PascalCase (#17335)

This commit is contained in:
0x6273
2023-06-15 03:44:28 +02:00
committed by GitHub
parent e6bf18c05a
commit 247c7a1d4d
44 changed files with 329 additions and 329 deletions

View File

@@ -128,9 +128,9 @@ namespace Content.Server.Sandbox
{
UpgradeId(slotEntity.Value);
}
else if (TryComp<PDAComponent>(slotEntity, out var pda))
else if (TryComp<PdaComponent>(slotEntity, out var pda))
{
if (pda.ContainedID == null)
if (pda.ContainedId == null)
{
var newID = CreateFreshId();
if (TryComp<ItemSlotsComponent>(pda.Owner, out var itemSlots))
@@ -140,7 +140,7 @@ namespace Content.Server.Sandbox
}
else
{
UpgradeId(pda.ContainedID.Owner);
UpgradeId(pda.ContainedId.Owner);
}
}
}