diff --git a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm index b77bac1b921..aa4fe0d0b99 100644 --- a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm +++ b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm @@ -44,6 +44,7 @@ move_to_delay = 6 speed = 3 mob_size = 6 + smart_melee = FALSE attacktext = "bitten" attack_emote = "skitters toward" @@ -110,6 +111,7 @@ armor_penetration = 15 poison_per_bite = 5 move_to_delay = 4 + smart_melee = TRUE /mob/living/simple_animal/hostile/giant_spider/emp name = "greimorian jackal" @@ -125,6 +127,7 @@ poison_type = /singleton/reagent/perconol // mildly beneficial for organics poison_per_bite = 2 move_to_delay = 5 + smart_melee = TRUE /mob/living/simple_animal/hostile/giant_spider/bombardier name = "greimorian bombardier" @@ -142,6 +145,7 @@ poison_type = /singleton/reagent/capsaicin/condensed poison_per_bite = 2 move_to_delay = 5 + smart_melee = TRUE /mob/living/simple_animal/hostile/giant_spider/bombardier/Shoot(var/target, var/start, var/mob/user, var/bullet = 0) if(target == start) diff --git a/html/changelogs/gremsoul_wickedcybs.yml b/html/changelogs/gremsoul_wickedcybs.yml new file mode 100644 index 00000000000..61185e6aac3 --- /dev/null +++ b/html/changelogs/gremsoul_wickedcybs.yml @@ -0,0 +1,6 @@ +author: WickedCybs + +delete-after: True + +changes: + - balance: "Gremorian warriors and workers now have simpler melee AI. The former relies on raw strength over strategy and the latter is single-minded in its pursuit of spreading infestation." \ No newline at end of file