From 5b4321cb1f62cea0308318eeb100a5a8f28f8606 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Sun, 12 Jan 2020 19:22:12 +0100 Subject: [PATCH 1/2] Assembly (Drone) buff Upgrades drone assembles to be between medium and large assembly size. As it currently stands all you can make with drone assemblies really is meme shit and nothing that would actually be beneficial, unless you remove the locomotion circuit at which point you can just use an unmovable large assembly. Assemblies could use an overhaul in general but this is the biggest flaw. --- .../integrated_electronics/core/assemblies/generic.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/integrated_electronics/core/assemblies/generic.dm b/code/modules/integrated_electronics/core/assemblies/generic.dm index 2508f9919d..4f26dc9ccc 100644 --- a/code/modules/integrated_electronics/core/assemblies/generic.dm +++ b/code/modules/integrated_electronics/core/assemblies/generic.dm @@ -154,8 +154,8 @@ icon_state = "setup_drone" desc = "It's a case, for building mobile electronics with." w_class = ITEMSIZE_NORMAL - max_components = IC_COMPONENTS_BASE * 1.5 - max_complexity = IC_COMPLEXITY_BASE * 1.5 + max_components = IC_COMPONENTS_BASE * 1.5 //CHOMP Edit ;Changing this to be 3 instead because as it stands its worthless + max_complexity = IC_COMPLEXITY_BASE * 1.5 //CHOMP Edit ;Changing this to be 3 instead because as it stands its worthless can_anchor = FALSE /obj/item/device/electronic_assembly/drone/can_move() @@ -260,4 +260,4 @@ to allow it to stick to walls." w_class = ITEMSIZE_TINY max_components = IC_COMPONENTS_BASE / 2 - max_complexity = IC_COMPLEXITY_BASE / 2 \ No newline at end of file + max_complexity = IC_COMPLEXITY_BASE / 2 From edad5a6d89c7940f7a2914a1fad30a3b68b1fca6 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Sun, 12 Jan 2020 19:29:31 +0100 Subject: [PATCH 2/2] woop --- .../modules/integrated_electronics/core/assemblies/generic.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/integrated_electronics/core/assemblies/generic.dm b/code/modules/integrated_electronics/core/assemblies/generic.dm index 4f26dc9ccc..a037b3e85e 100644 --- a/code/modules/integrated_electronics/core/assemblies/generic.dm +++ b/code/modules/integrated_electronics/core/assemblies/generic.dm @@ -154,8 +154,8 @@ icon_state = "setup_drone" desc = "It's a case, for building mobile electronics with." w_class = ITEMSIZE_NORMAL - max_components = IC_COMPONENTS_BASE * 1.5 //CHOMP Edit ;Changing this to be 3 instead because as it stands its worthless - max_complexity = IC_COMPLEXITY_BASE * 1.5 //CHOMP Edit ;Changing this to be 3 instead because as it stands its worthless + max_components = IC_COMPONENTS_BASE * 3 //CHOMP Edit ;Changing this to be 3 instead because as it stands its worthless + max_complexity = IC_COMPLEXITY_BASE * 3 //CHOMP Edit ;Changing this to be 3 instead because as it stands its worthless can_anchor = FALSE /obj/item/device/electronic_assembly/drone/can_move()