mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-12 08:36:00 +01:00
Grep for space indentation (#54850)
#54604 atomizing Since a lot of the space indents are in lists ill atomize those later
This commit is contained in:
@@ -78,11 +78,11 @@
|
||||
return data
|
||||
|
||||
/**
|
||||
* Checks if we are allowed to launch the shuttle, for special cases
|
||||
*
|
||||
* Arguments:
|
||||
* * user - The mob trying to initiate the launch
|
||||
*/
|
||||
* Checks if we are allowed to launch the shuttle, for special cases
|
||||
*
|
||||
* Arguments:
|
||||
* * user - The mob trying to initiate the launch
|
||||
*/
|
||||
/obj/machinery/computer/shuttle/proc/launch_check(mob/user)
|
||||
return TRUE
|
||||
|
||||
|
||||
@@ -363,14 +363,14 @@
|
||||
SSticker.emergency_reason = null
|
||||
|
||||
/**
|
||||
* Proc that handles checking if the emergency shuttle was successfully hijacked via being the only people present on the shuttle for the elimination hijack or highlander objective
|
||||
*
|
||||
* Checks for all mobs on the shuttle, checks their status, and checks if they're
|
||||
* borgs or simple animals. Depending on the args, certain mobs may be ignored,
|
||||
* and the presence of other antags may or may not invalidate a hijack.
|
||||
* Args:
|
||||
* filter_by_human, default TRUE, tells the proc that only humans should block a hijack. Borgs and animals are ignored and will not block if this is TRUE.
|
||||
* solo_hijack, default FALSE, tells the proc to fail with multiple hijackers, such as for Highlander mode.
|
||||
* Proc that handles checking if the emergency shuttle was successfully hijacked via being the only people present on the shuttle for the elimination hijack or highlander objective
|
||||
*
|
||||
* Checks for all mobs on the shuttle, checks their status, and checks if they're
|
||||
* borgs or simple animals. Depending on the args, certain mobs may be ignored,
|
||||
* and the presence of other antags may or may not invalidate a hijack.
|
||||
* Args:
|
||||
* filter_by_human, default TRUE, tells the proc that only humans should block a hijack. Borgs and animals are ignored and will not block if this is TRUE.
|
||||
* solo_hijack, default FALSE, tells the proc to fail with multiple hijackers, such as for Highlander mode.
|
||||
*/
|
||||
/obj/docking_port/mobile/emergency/proc/elimination_hijack(filter_by_human = TRUE, solo_hijack = FALSE)
|
||||
var/has_people = FALSE
|
||||
|
||||
@@ -798,8 +798,8 @@
|
||||
return "00:00"
|
||||
|
||||
/**
|
||||
* Gets shuttle location status in a form of string for tgui interfaces
|
||||
*/
|
||||
* Gets shuttle location status in a form of string for tgui interfaces
|
||||
*/
|
||||
/obj/docking_port/mobile/proc/get_status_text_tgui()
|
||||
var/obj/docking_port/stationary/dockedAt = get_docked()
|
||||
var/docked_at = dockedAt?.name || "Unknown"
|
||||
|
||||
Reference in New Issue
Block a user