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:
TiviPlus
2020-11-30 18:48:40 +01:00
committed by GitHub
parent 84796e5372
commit 0eaab0bc54
468 changed files with 7623 additions and 7548 deletions
+7 -7
View File
@@ -287,13 +287,13 @@ GLOBAL_LIST_INIT(spells, typesof(/obj/effect/proc_holder/spell)) //needed for th
return
/**
* can_target: Checks if we are allowed to cast the spell on a target.
*
* Arguments:
* * target The atom that is being targeted by the spell.
* * user The mob using the spell.
* * silent If the checks should not give any feedback messages.
*/
* can_target: Checks if we are allowed to cast the spell on a target.
*
* Arguments:
* * target The atom that is being targeted by the spell.
* * user The mob using the spell.
* * silent If the checks should not give any feedback messages.
*/
/obj/effect/proc_holder/spell/proc/can_target(atom/target, mob/user, silent = FALSE)
return TRUE
@@ -217,11 +217,11 @@
target.adjust_bodytemperature(-200)
/**
* cure_blidness: Cures Abyssal Gaze blindness from the target
*
* Arguments:
* * target The mob that is being cured of the blindness.
*/
* cure_blidness: Cures Abyssal Gaze blindness from the target
*
* Arguments:
* * target The mob that is being cured of the blindness.
*/
/obj/effect/proc_holder/spell/pointed/abyssal_gaze/proc/cure_blindness(mob/target)
if(isliving(target))
var/mob/living/L = target
@@ -39,20 +39,20 @@
on_activation(user)
/**
* on_activation: What happens upon pointed spell activation.
*
* Arguments:
* * user The mob interacting owning the spell.
*/
* on_activation: What happens upon pointed spell activation.
*
* Arguments:
* * user The mob interacting owning the spell.
*/
/obj/effect/proc_holder/spell/pointed/proc/on_activation(mob/user)
return
/**
* on_activation: What happens upon pointed spell deactivation.
*
* Arguments:
* * user The mob interacting owning the spell.
*/
* on_activation: What happens upon pointed spell deactivation.
*
* Arguments:
* * user The mob interacting owning the spell.
*/
/obj/effect/proc_holder/spell/pointed/proc/on_deactivation(mob/user)
return
@@ -84,13 +84,13 @@
return TRUE // Do not do any underlying actions after the spell cast
/**
* intercept_check: Specific spell checks for InterceptClickOn() targets.
*
* Arguments:
* * user The mob using the ranged spell via intercept.
* * target The atom that is being targeted by the spell via intercept.
* * silent If the checks should produce not any feedback messages for the user.
*/
* intercept_check: Specific spell checks for InterceptClickOn() targets.
*
* Arguments:
* * user The mob using the ranged spell via intercept.
* * target The atom that is being targeted by the spell via intercept.
* * silent If the checks should produce not any feedback messages for the user.
*/
/obj/effect/proc_holder/spell/pointed/proc/intercept_check(mob/user, atom/target, silent = FALSE)
if(!self_castable && target == user)
if(!silent)
@@ -77,11 +77,11 @@
return
/**
* check_menu: Checks if we are allowed to interact with a radial menu
*
* Arguments:
* * user The mob interacting with a menu
*/
* check_menu: Checks if we are allowed to interact with a radial menu
*
* Arguments:
* * user The mob interacting with a menu
*/
/obj/effect/proc_holder/spell/targeted/shapeshift/proc/check_menu(mob/user)
if(!istype(user))
return FALSE