Skip to content

Commit

Permalink
merge stable to master (#34279)
Browse files Browse the repository at this point in the history
  • Loading branch information
slarticodefast authored Jan 7, 2025
2 parents 483ac50 + e0163fb commit 45e0b9e
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 24 deletions.
3 changes: 2 additions & 1 deletion Content.Shared/Access/Systems/SharedIdCardSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ private void OnRename(ref EntityRenamedEvent ev)
// When a player gets renamed their id card is renamed as well to match.
// Unfortunately since TryFindIdCard will succeed if the entity is also a card this means that the card will
// keep renaming itself unless we return early.
if (HasComp<IdCardComponent>(ev.Uid))
// We also do not include the PDA itself being renamed, as that triggers the same event (e.g. for chameleon PDAs).
if (HasComp<IdCardComponent>(ev.Uid) || HasComp<PdaComponent>(ev.Uid))
return;

if (TryFindIdCard(ev.Uid, out var idCard))
Expand Down
77 changes: 54 additions & 23 deletions Resources/Maps/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13781,7 +13781,7 @@ entities:
pos: -29.5,15.5
parent: 5350
- type: Door
secondsUntilStateChange: -208561.16
secondsUntilStateChange: -208773.03
state: Opening
- type: DeviceLinkSource
lastSignals:
Expand Down Expand Up @@ -14039,7 +14039,7 @@ entities:
pos: -4.5,53.5
parent: 5350
- type: Door
secondsUntilStateChange: -63214.934
secondsUntilStateChange: -63426.812
state: Opening
- type: DeviceLinkSink
invokeCounter: 1
Expand Down Expand Up @@ -15595,7 +15595,12 @@ entities:
- uid: 23812
components:
- type: Transform
pos: 73.53678,8.623411
pos: 73.68355,8.538181
parent: 5350
- uid: 28194
components:
- type: Transform
pos: 73.29292,8.538181
parent: 5350
- proto: AnomalyScanner
entities:
Expand Down Expand Up @@ -43232,45 +43237,35 @@ entities:
- type: Transform
pos: 56.5,8.5
parent: 5350
- uid: 12481
components:
- type: Transform
pos: 55.5,8.5
parent: 5350
- uid: 12482
components:
- type: Transform
pos: 55.5,9.5
parent: 5350
- uid: 12483
components:
- type: Transform
pos: 54.5,9.5
parent: 5350
- uid: 12484
- uid: 12483
components:
- type: Transform
pos: 54.5,10.5
pos: 55.5,9.5
parent: 5350
- uid: 12485
components:
- type: Transform
pos: 54.5,11.5
pos: 56.5,9.5
parent: 5350
- uid: 12486
components:
- type: Transform
pos: 54.5,12.5
pos: 56.5,10.5
parent: 5350
- uid: 12487
components:
- type: Transform
pos: 54.5,13.5
pos: 52.5,20.5
parent: 5350
- uid: 12488
components:
- type: Transform
pos: 54.5,14.5
pos: 52.5,19.5
parent: 5350
- uid: 12489
components:
Expand Down Expand Up @@ -47762,6 +47757,11 @@ entities:
- type: Transform
pos: 77.5,-30.5
parent: 5350
- uid: 28193
components:
- type: Transform
pos: 52.5,18.5
parent: 5350
- proto: CableHVStack
entities:
- uid: 1551
Expand Down Expand Up @@ -56209,6 +56209,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -32.5,44.5
parent: 5350
- uid: 12484
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 55.5,9.5
parent: 5350
- uid: 13979
components:
- type: Transform
Expand Down Expand Up @@ -63421,6 +63427,12 @@ entities:
- type: Transform
pos: 71.5,-30.5
parent: 5350
- uid: 28196
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -33.5,17.5
parent: 5350
- proto: ChairOfficeLight
entities:
- uid: 1269
Expand Down Expand Up @@ -67309,11 +67321,11 @@ entities:
parent: 5350
- proto: ComputerCargoShuttle
entities:
- uid: 3520
- uid: 28195
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -42.5,17.5
rot: -1.5707963267948966 rad
pos: -32.5,17.5
parent: 5350
- proto: ComputerComms
entities:
Expand Down Expand Up @@ -67614,6 +67626,14 @@ entities:
- type: Transform
pos: -40.5,33.5
parent: 5350
- proto: ComputerShuttleCargo
entities:
- uid: 3520
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -42.5,17.5
parent: 5350
- proto: ComputerSolarControl
entities:
- uid: 9058
Expand Down Expand Up @@ -81427,7 +81447,7 @@ entities:
pos: -10.5,51.5
parent: 5350
- type: Door
secondsUntilStateChange: -61939.6
secondsUntilStateChange: -62151.48
state: Closing
- type: DeviceNetwork
deviceLists:
Expand Down Expand Up @@ -144687,6 +144707,11 @@ entities:
- type: Transform
pos: -33.5,44.5
parent: 5350
- uid: 12481
components:
- type: Transform
pos: 54.5,9.5
parent: 5350
- uid: 13977
components:
- type: MetaData
Expand Down Expand Up @@ -152418,6 +152443,12 @@ entities:
- type: Transform
pos: 47.5,-24.5
parent: 5350
- uid: 28197
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -32.5,16.5
parent: 5350
- proto: TableCarpet
entities:
- uid: 693
Expand Down

0 comments on commit 45e0b9e

Please sign in to comment.