Skip to content

Commit

Permalink
Enables FTL auto-spool mode on the Thirring FTL drive (#2606)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bokkiewokkie authored Apr 1, 2024
1 parent 114158f commit 25aa939
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nsv13/code/modules/overmap/FTL/components/drive.dm
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
var/ftl_start = 'nsv13/sound/effects/ship/FTL_long_thirring.ogg'
var/ftl_exit = 'nsv13/sound/effects/ship/freespace2/warp_close.wav'
var/datum/looping_sound/advanced/ftl_drive/soundloop
var/auto_spool_capable = FALSE // whether the drive is capable of auto spooling or not
var/auto_spool_capable = TRUE // whether the drive is capable of auto spooling or not
var/auto_spool_enabled = FALSE // whether the drive is set to auto spool or not
var/lockout = FALSE //Used for our end round shenanigains

Expand Down Expand Up @@ -361,7 +361,7 @@ Preset classes of FTL drive with pre-programmed behaviours
progress = 0
soundloop.interrupt()
jump_speed_pylon = initial(jump_speed_pylon)
if(shutdown_pylons)
if(shutdown_pylons && !auto_spool_enabled)
for(var/obj/machinery/atmospherics/components/binary/drive_pylon/P as() in pylons)
if(P.pylon_state == PYLON_STATE_OFFLINE || P.pylon_state == PYLON_STATE_SHUTDOWN)
continue
Expand Down

0 comments on commit 25aa939

Please sign in to comment.