Minor fixes for the holopad (#33969)

Initial commit
This commit is contained in:
chromiumboy
2024-12-20 04:51:00 -06:00
committed by GitHub
parent 7f2907a93a
commit 39600f9516
4 changed files with 17 additions and 17 deletions

View File

@@ -194,7 +194,7 @@ public sealed class TelephoneSystem : SharedTelephoneSystem
private bool TryCallTelephone(Entity<TelephoneComponent> source, Entity<TelephoneComponent> receiver, EntityUid user, TelephoneCallOptions? options = null)
{
if (!IsSourceAbleToReachReceiver(source, receiver))
if (!IsSourceAbleToReachReceiver(source, receiver) && options?.IgnoreRange != true)
return false;
if (IsTelephoneEngaged(receiver) &&