Skip to content

Commit

Permalink
Hmm yes
Browse files Browse the repository at this point in the history
  • Loading branch information
FoxxoTrystan committed Nov 4, 2024
1 parent 71d6476 commit 580dcf0
Show file tree
Hide file tree
Showing 4 changed files with 6,777 additions and 6 deletions.
8 changes: 3 additions & 5 deletions Content.Server/Communications/CommunicationsConsoleSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,13 +200,11 @@ private bool CanUse(EntityUid user, EntityUid console)
private bool CanCallOrRecall(CommunicationsConsoleComponent comp)
{
// Defer to what the round end system thinks we should be able to do.
if (_emergency.EmergencyShuttleArrived || !_roundEndSystem.CanCallOrRecall())
if (_emergency.EmergencyShuttleArrived
|| !_roundEndSystem.CanCallOrRecall()
|| !comp.CanShuttle)
return false;

// Calling shuttle checks
if (_roundEndSystem.ExpectedCountdownEnd is null)
return comp.CanShuttle;

// Recalling shuttle checks
var recallThreshold = _cfg.GetCVar(CCVars.EmergencyRecallTurningPoint);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public sealed partial class PirateRadioSpawnRuleComponent : Component
[DataField]
public List<string> PirateRadioShuttlePath { get; private set; } = new()
{
"Maps/Shuttles/pirateradio.yml",
"Maps/Floof/pirateradio.yml", // Floofstation
};

[DataField]
Expand Down
Binary file not shown.
Loading

0 comments on commit 580dcf0

Please sign in to comment.