From 224ce514e772bd670eb123f6252568cf5cd52eab Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sat, 26 Feb 2022 08:45:35 +0100 Subject: [PATCH] [MIRROR] Fixes some code style issues for more free GBP [MDB IGNORE] (#11741) * Fixes some code style issues for more free GBP (#65133) * Fixes some code style issues for more free GBP Co-authored-by: Iamgoofball --- code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm index 6c032091384..be10e2b3666 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm +++ b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm @@ -229,14 +229,14 @@ /proc/_step_away(ref, trg, max) step_away(ref, trg, max) -/proc/_has_trait(datum/thing,trait) - return HAS_TRAIT(thing,trait) +/proc/_has_trait(datum/thing, trait) + return HAS_TRAIT(thing, trait) -/proc/_add_trait(datum/thing,trait,source) - ADD_TRAIT(thing,trait,source) +/proc/_add_trait(datum/thing, trait, source) + ADD_TRAIT(thing, trait, source) -/proc/_remove_trait(datum/thing,trait,source) - REMOVE_TRAIT(thing,trait,source) +/proc/_remove_trait(datum/thing, trait, source) + REMOVE_TRAIT(thing, trait, source) /proc/_winset(player, control_id, params) winset(player, control_id, params)