Skip to content

Commit

Permalink
Merge pull request #8039 from MistakeNot4892/fixes
Browse files Browse the repository at this point in the history
Changed size check to type check for platform recharger denial check.
  • Loading branch information
Atermonera committed Apr 21, 2021
2 parents 6fcca25 + d28c828 commit 920140d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/machinery/rechargestation.dm
Expand Up @@ -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

Expand Down

0 comments on commit 920140d

Please sign in to comment.