From 271d67d237338fbb396484d5c7350301e9b6a26c Mon Sep 17 00:00:00 2001 From: Deniz <66401072+Oyu07@users.noreply.github.com> Date: Thu, 2 May 2024 02:54:00 +0300 Subject: [PATCH] Adds MARK: to some comments (#25184) * robot_upgrades * disability * airlock * mecha * Abcudtor * Forgot a space here * Some style changes + additions * removed a no comment * comment change * empty * empty again dont dare look insde * ault Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> --------- Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> --- code/game/dna/mutations/disabilities.dm | 8 +++---- code/game/machinery/doors/airlock_types.dm | 22 +++++++++---------- code/game/mecha/mecha.dm | 19 ++++++++-------- .../objects/items/robot/robot_upgrades.dm | 14 ++++++------ 4 files changed, 32 insertions(+), 31 deletions(-) diff --git a/code/game/dna/mutations/disabilities.dm b/code/game/dna/mutations/disabilities.dm index 610a513ab93..9039ac04521 100644 --- a/code/game/dna/mutations/disabilities.dm +++ b/code/game/dna/mutations/disabilities.dm @@ -232,7 +232,7 @@ ////////////////// //////////////////////////////////////// -// Totally Crippling +// MARK: Totally Crippling //////////////////////////////////////// // WAS: /datum/bioEffect/mute @@ -252,7 +252,7 @@ return "" //////////////////////////////////////// -// Harmful to others as well as self +// MARK: Harmful to everyone //////////////////////////////////////// /datum/mutation/disability/radioactive @@ -283,7 +283,7 @@ return "rads_s" //////////////////////////////////////// -// Other disabilities +// MARK: Other disabilities //////////////////////////////////////// // WAS: /datum/bioEffect/fat @@ -447,7 +447,7 @@ return "[prefix][uppertext(jointext(rearranged," "))]!!" ////////////////// -// USELESS SHIT // +// MARK: USELESS SHIT ////////////////// // WAS: /datum/bioEffect/strong diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm index 9766496eec8..9b96ab09c12 100644 --- a/code/game/machinery/doors/airlock_types.dm +++ b/code/game/machinery/doors/airlock_types.dm @@ -1,5 +1,5 @@ /* - Station Airlocks Regular + MARK: Station Airlocks Regular */ /obj/machinery/door/airlock/command @@ -60,7 +60,7 @@ ////////////////////////////////// /* - Station Airlocks Glass + MARK: Station Airlocks Glass */ /obj/machinery/door/airlock/glass @@ -116,7 +116,7 @@ ////////////////////////////////// /* - Station Airlocks Mineral + MARK: Station Airlocks Mineral */ /obj/machinery/door/airlock/gold @@ -273,7 +273,7 @@ ////////////////////////////////// /* - Station2 Airlocks + MARK: Station2 Airlocks */ /obj/machinery/door/airlock/public @@ -287,7 +287,7 @@ ////////////////////////////////// /* - External Airlocks + MARK: External Airlocks */ /obj/machinery/door/airlock/external @@ -317,7 +317,7 @@ ////////////////////////////////// /* - CentCom Airlocks + MARK: CentCom Airlocks */ /obj/machinery/door/airlock/centcom @@ -339,7 +339,7 @@ ////////////////////////////////// /* - Vault Airlocks + MARK: Vault Airlocks */ /obj/machinery/door/airlock/vault @@ -354,7 +354,7 @@ ////////////////////////////////// /* - Hatch Airlocks + MARK: Hatch Airlocks */ /obj/machinery/door/airlock/hatch @@ -400,7 +400,7 @@ ////////////////////////////////// /* - High Security Airlocks + MARK: High Security Airlocks */ /obj/machinery/door/airlock/highsecurity @@ -474,7 +474,7 @@ ////////////////////////////////// /* - Cult Airlocks + MARK: Cult Airlocks */ /obj/machinery/door/airlock/cult @@ -610,7 +610,7 @@ ////////////////////////////////// /* - Misc Airlocks + MARK: Misc Airlocks */ //Terribly sorry for the code doubling, but things go derpy otherwise. diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index 447821b5fa9..fd1975ccc0c 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -264,8 +264,9 @@ ////////////////////////////////// -//////// Movement procs //////// +//////// MARK: Movement procs ////////////////////////////////// + /obj/mecha/Process_Spacemove(movement_dir = 0) . = ..() if(.) @@ -451,7 +452,7 @@ /////////////////////////////////// -//////// Internal damage //////// +//////// MARK: Internal damage /////////////////////////////////// /obj/mecha/proc/check_for_internal_damage(list/possible_int_damage, ignore_threshold=null) @@ -494,7 +495,7 @@ //////////////////////////////////////// -//////// Health related procs //////// +//////// MARK: Health related procs //////////////////////////////////////// /obj/mecha/proc/get_armour_facing(relative_dir) @@ -688,7 +689,7 @@ check_for_internal_damage(list(MECHA_INT_FIRE, MECHA_INT_TEMP_CONTROL)) ////////////////////// -////// AttackBy ////// +////// MARK: AttackBy ////////////////////// /obj/mecha/attackby(obj/item/W, mob/user, params) @@ -920,7 +921,7 @@ ///////////////////////////////////// -//////////// AI piloting //////////// +//////////// MARK: AI piloting ///////////////////////////////////// /obj/mecha/attack_ai(mob/living/silicon/ai/user) @@ -1026,7 +1027,7 @@ GrantActions(AI, !AI.can_dominate_mechs) ///////////////////////////////////// -//////// Atmospheric stuff //////// +//////// MARK: Atmospheric stuff ///////////////////////////////////// /obj/mecha/proc/get_turf_air() @@ -1340,7 +1341,7 @@ go_out() ///////////////////////// -////// Access stuff ///// +////// MARK: Access stuff ///////////////////////// /obj/mecha/proc/operation_allowed(mob/living/carbon/human/H) @@ -1378,7 +1379,7 @@ return 1 /////////////////////// -///// Power stuff ///// +///// MARK: Power stuff /////////////////////// /obj/mecha/proc/has_charge(amount) @@ -1438,7 +1439,7 @@ return icon_state ////////////////////////////////////////// -//////// Mecha global iterators //////// +//////// MARK: Mecha global iterators ////////////////////////////////////////// /obj/mecha/process() diff --git a/code/game/objects/items/robot/robot_upgrades.dm b/code/game/objects/items/robot/robot_upgrades.dm index 1828254d2ef..28cad65e92f 100644 --- a/code/game/objects/items/robot/robot_upgrades.dm +++ b/code/game/objects/items/robot/robot_upgrades.dm @@ -81,7 +81,7 @@ return TRUE /*******************/ -/**** COMMON ****/ +// MARK: COMMON /*******************/ /obj/item/borg/upgrade/reset @@ -268,7 +268,7 @@ return TRUE /***********************/ -/**** SECURITY ****/ +// MARK: Security /***********************/ /obj/item/borg/upgrade/disablercooler @@ -294,7 +294,7 @@ return TRUE /*******************/ -/**** MINING ****/ +// MARK: Mining /*******************/ /obj/item/borg/upgrade/ddrill @@ -333,7 +333,7 @@ return TRUE /***********************/ -/**** ENGINEER ****/ +// MARK: Engineer /***********************/ /obj/item/borg/upgrade/rcd @@ -360,7 +360,7 @@ items_to_add = list(/obj/item/storage/part_replacer) /***********************/ -/**** JANITOR ****/ +// MARK: Janitor /***********************/ /obj/item/borg/upgrade/floorbuffer @@ -411,7 +411,7 @@ ) /***********************/ -/**** SYNDIE ****/ +// MARK: Syndicate /***********************/ /obj/item/borg/upgrade/syndicate @@ -439,7 +439,7 @@ ) /***********************/ -/**** ABDUCTOR ****/ +// MARK: Abductor /***********************/ /obj/item/borg/upgrade/abductor_engi