[MIRROR] Fixes the riding component not working with basic mobs [MDB IGNORE] (#10490)

* Fixes the riding component not working with basic mobs (#63884)

basic mobs were missing behavior on relaying movement

* Fixes the riding component not working with basic mobs

Co-authored-by: Seth Scherer <supernovaa41@gmx.com>
This commit is contained in:
SkyratBot
2022-01-07 12:43:58 +01:00
committed by GitHub
parent 27c5843a0f
commit a49f1d3ba1
+4
View File
@@ -146,3 +146,7 @@
add_or_update_variable_movespeed_modifier(/datum/movespeed_modifier/simplemob_varspeed, multiplicative_slowdown = speed)
SEND_SIGNAL(src, POST_BASIC_MOB_UPDATE_VARSPEED)
/mob/living/basic/relaymove(mob/living/user, direction)
if(user.incapacitated())
return
return relaydrive(user, direction)