mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
[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:
committed by
GitHub
parent
7872b8bf3c
commit
2653dac7da
@@ -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()
|
||||
..()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user