From e69a766f49558f8a895751831a64a02c1d0f2e08 Mon Sep 17 00:00:00 2001 From: Afya212 <54920261+Afya212@users.noreply.github.com> Date: Thu, 26 May 2022 17:39:59 +0100 Subject: [PATCH] Spiderbots can no longer pull all the things (#14076) --- .../modules/mob/living/simple_animal/friendly/spiderbot.dm | 6 ++++-- html/changelogs/Afya-spiderbot.yml | 7 +++++++ 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/Afya-spiderbot.yml diff --git a/code/modules/mob/living/simple_animal/friendly/spiderbot.dm b/code/modules/mob/living/simple_animal/friendly/spiderbot.dm index e4338860f73..18ad396904b 100644 --- a/code/modules/mob/living/simple_animal/friendly/spiderbot.dm +++ b/code/modules/mob/living/simple_animal/friendly/spiderbot.dm @@ -5,7 +5,7 @@ max_co2 = 0 minbodytemp = 0 maxbodytemp = 500 - mob_size = MOB_SMALL + mob_size = MOB_TINY var/radio_type = /obj/item/device/radio/borg var/obj/item/device/radio/borg/radio = null @@ -45,8 +45,10 @@ var/obj/item/held_item = null //Storage for single item they can hold. speed = -1 //Spiderbots gotta go fast. pass_flags = PASSTABLE | PASSDOORHATCH - speak_emote = list("beeps","clicks","chirps") universal_understand = TRUE + speak_emote = list("beeps","clicks","chirps") + can_pull_size = 3 + can_pull_mobs = MOB_PULL_SMALLER psi_pingable = FALSE diff --git a/html/changelogs/Afya-spiderbot.yml b/html/changelogs/Afya-spiderbot.yml new file mode 100644 index 00000000000..5b2ff715faa --- /dev/null +++ b/html/changelogs/Afya-spiderbot.yml @@ -0,0 +1,7 @@ +author: Afya + +delete-after: True + +changes: + - bugfix: "Spiderbots can no longer drag all the things." + - tweak: "Spiderbots are now considered tiny mobs." \ No newline at end of file