mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 20:48:56 +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:
@@ -30,12 +30,12 @@
|
||||
icon_state = "broom0"
|
||||
|
||||
/**
|
||||
* Handles registering the sweep proc when the broom is wielded
|
||||
*
|
||||
* Arguments:
|
||||
* * source - The source of the on_wield proc call
|
||||
* * user - The user which is wielding the broom
|
||||
*/
|
||||
* Handles registering the sweep proc when the broom is wielded
|
||||
*
|
||||
* Arguments:
|
||||
* * source - The source of the on_wield proc call
|
||||
* * user - The user which is wielding the broom
|
||||
*/
|
||||
/obj/item/pushbroom/proc/on_wield(obj/item/source, mob/user)
|
||||
SIGNAL_HANDLER
|
||||
|
||||
@@ -43,12 +43,12 @@
|
||||
RegisterSignal(user, COMSIG_MOVABLE_MOVED, .proc/sweep)
|
||||
|
||||
/**
|
||||
* Handles unregistering the sweep proc when the broom is unwielded
|
||||
*
|
||||
* Arguments:
|
||||
* * source - The source of the on_unwield proc call
|
||||
* * user - The user which is unwielding the broom
|
||||
*/
|
||||
* Handles unregistering the sweep proc when the broom is unwielded
|
||||
*
|
||||
* Arguments:
|
||||
* * source - The source of the on_unwield proc call
|
||||
* * user - The user which is unwielding the broom
|
||||
*/
|
||||
/obj/item/pushbroom/proc/on_unwield(obj/item/source, mob/user)
|
||||
SIGNAL_HANDLER
|
||||
|
||||
@@ -61,13 +61,13 @@
|
||||
sweep(user, A, FALSE)
|
||||
|
||||
/**
|
||||
* Attempts to push up to BROOM_PUSH_LIMIT atoms from a given location the user's faced direction
|
||||
*
|
||||
* Arguments:
|
||||
* * user - The user of the pushbroom
|
||||
* * A - The atom which is located at the location to push atoms from
|
||||
* * moving - Boolean argument declaring if the sweep is from generated from movement or not
|
||||
*/
|
||||
* Attempts to push up to BROOM_PUSH_LIMIT atoms from a given location the user's faced direction
|
||||
*
|
||||
* Arguments:
|
||||
* * user - The user of the pushbroom
|
||||
* * A - The atom which is located at the location to push atoms from
|
||||
* * moving - Boolean argument declaring if the sweep is from generated from movement or not
|
||||
*/
|
||||
/obj/item/pushbroom/proc/sweep(mob/user, atom/A, moving = TRUE)
|
||||
SIGNAL_HANDLER
|
||||
|
||||
@@ -95,12 +95,12 @@
|
||||
playsound(loc, 'sound/weapons/thudswoosh.ogg', 30, TRUE, -1)
|
||||
|
||||
/**
|
||||
* Attempts to insert the push broom into a janicart
|
||||
*
|
||||
* Arguments:
|
||||
* * user - The user of the push broom
|
||||
* * J - The janicart to insert into
|
||||
*/
|
||||
* Attempts to insert the push broom into a janicart
|
||||
*
|
||||
* Arguments:
|
||||
* * user - The user of the push broom
|
||||
* * J - The janicart to insert into
|
||||
*/
|
||||
/obj/item/pushbroom/proc/janicart_insert(mob/user, obj/structure/janitorialcart/J) //bless you whoever fixes this copypasta
|
||||
J.put_in_cart(src, user)
|
||||
J.mybroom=src
|
||||
|
||||
Reference in New Issue
Block a user