From 4dfebd58e97d98bcd8c9c2cc25ef8a36a1734f65 Mon Sep 17 00:00:00 2001 From: larentoun <31931237+larentoun@users.noreply.github.com> Date: Sun, 7 May 2023 20:32:13 +0300 Subject: [PATCH] fix: Basic mobs' multiplicative movespeed (#75186) ## About The Pull Request Adds default multiplicative movespeed for basic mobs, so their speed is configurable via config. ## Why It's Good For The Game Closing things which were probably missed in the development of basic mobs ## Changelog :cl: code: Adds default multiplicative movespeed for basic mobs, to make them editable in config config: Default multiplicative movespeed for basic mobs in example config /:cl: --- code/controllers/configuration/entries/game_options.dm | 1 + config/game_options.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/code/controllers/configuration/entries/game_options.dm b/code/controllers/configuration/entries/game_options.dm index 0665d86baae..d9a9baac5aa 100644 --- a/code/controllers/configuration/entries/game_options.dm +++ b/code/controllers/configuration/entries/game_options.dm @@ -197,6 +197,7 @@ key_mode = KEY_MODE_TYPE value_mode = VALUE_MODE_NUM default = list( //DEFAULTS + /mob/living/basic = 1, /mob/living/simple_animal = 1, /mob/living/silicon/pai = 1, /mob/living/carbon/alien/adult/hunter = -1, diff --git a/config/game_options.txt b/config/game_options.txt index e886604be13..b917f6d4567 100644 --- a/config/game_options.txt +++ b/config/game_options.txt @@ -45,6 +45,7 @@ WALK_DELAY 4 ##MULTIPLICATIVE_MOVESPEED /mob/living/carbon/alien 0 ##MULTIPLICATIVE_MOVESPEED /mob/living/simple_animal/slime 0 MULTIPLICATIVE_MOVESPEED /mob/living/simple_animal 0 +MULTIPLICATIVE_MOVESPEED /mob/living/basic 0 ## NAMES ###