Merge pull request #10187 from VOREStation/upstream-merge-8039

[MIRROR] Changed size check to type check for platform recharger denial check.
This commit is contained in:
Novacat
2021-04-21 02:32:14 -04:00
committed by Chompstation Bot
parent 4b4d522565
commit 828280f7c1

View File

@@ -246,7 +246,7 @@
if(!R.cell)
return
if(R.mob_size >= MOB_LARGE)
if(istype(R, /mob/living/silicon/robot/platform))
to_chat(R, SPAN_WARNING("You are too large to fit into \the [src]."))
return