diff --git a/Content.Server/_NF/Bank/ATMSystem.cs b/Content.Server/_NF/Bank/ATMSystem.cs index b731a2ed67e..758fc06397d 100644 --- a/Content.Server/_NF/Bank/ATMSystem.cs +++ b/Content.Server/_NF/Bank/ATMSystem.cs @@ -185,7 +185,7 @@ private void OnDeposit(EntityUid uid, BankATMComponent component, BankDepositMes private void OnCashSlotChanged(EntityUid uid, BankATMComponent component, ContainerModifiedMessage args) { - var bankUi = _uiSystem.GetUiOrNull(uid, BankATMMenuUiKey.ATM); + var bankUi = _uiSystem.GetUiOrNull(uid, BankATMMenuUiKey.ATM) ?? _uiSystem.GetUiOrNull(uid, BankATMMenuUiKey.BlackMarket); var uiUser = bankUi!.SubscribedSessions.FirstOrDefault(); GetInsertedCashAmount(component, out var deposit); diff --git a/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs b/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs index 0146f422bc3..83ba860006d 100644 --- a/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs +++ b/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs @@ -174,7 +174,7 @@ private void OnStartup(RoundStartingEvent ev) if (_map.TryLoad(mapId, cove, out var depotUid6s, new MapLoadOptions { - Offset = _random.NextVector2(2250f, 5800f) + Offset = _random.NextVector2(2250f, 4600f) })) { if (_prototypeManager.TryIndex("Cove", out var stationProto))