From 5faa5739bda32f33336aebfbb0ecc8282a143457 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sun, 7 Feb 2016 17:47:05 +1030 Subject: [PATCH] Parcel wrappers now copy w_class from the contents. --- code/modules/recycling/sortingmachinery.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/recycling/sortingmachinery.dm b/code/modules/recycling/sortingmachinery.dm index eb76325832..70ac20ae87 100755 --- a/code/modules/recycling/sortingmachinery.dm +++ b/code/modules/recycling/sortingmachinery.dm @@ -247,7 +247,8 @@ if(user.client) user.client.screen -= O P.wrapped = O - O.loc = P + O.forceMove(P) + P.w_class = O.w_class var/i = round(O.w_class) if(i in list(1,2,3,4,5)) P.icon_state = "deliverycrate[i]"