[MIRROR] Gets rid of = new in object defines (#11075)

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-06-15 10:25:06 -07:00
committed by GitHub
parent 7872b8bf3c
commit 2653dac7da
30 changed files with 98 additions and 75 deletions

View File

@@ -18,11 +18,14 @@ var/global/datum/emergency_shuttle_controller/emergency_shuttle = new
var/deny_shuttle = 0 //allows admins to prevent the shuttle from being called
var/departed = 0 //if the shuttle has left the station at least once
var/datum/announcement/priority/emergency_shuttle_docked = new(0, new_sound = sound('sound/AI/shuttledock.ogg'))
var/datum/announcement/priority/emergency_shuttle_called = new(0, new_sound = sound('sound/AI/shuttlecalled.ogg'))
var/datum/announcement/priority/emergency_shuttle_recalled = new(0, new_sound = sound('sound/AI/shuttlerecalled.ogg'))
var/datum/announcement/priority/emergency_shuttle_docked
var/datum/announcement/priority/emergency_shuttle_called
var/datum/announcement/priority/emergency_shuttle_recalled
/datum/emergency_shuttle_controller/New()
emergency_shuttle_docked = new(0, new_sound = sound('sound/AI/shuttledock.ogg'))
emergency_shuttle_called = new(0, new_sound = sound('sound/AI/shuttlecalled.ogg'))
emergency_shuttle_recalled = new(0, new_sound = sound('sound/AI/shuttlerecalled.ogg'))
escape_pods = list()
..()