[NO GBP] Fixes papercutter's Exited() proc (#76153)

## About The Pull Request
#76131 was merged instead of drafted when asking for this change

Look at this the items get removed right yippee yahoo

![dreamseeker_RJx37zbvzN](https://github.com/tgstation/tgstation/assets/76465278/e68e11d7-212e-42de-baf9-01890b1955ad)
## Why It's Good For The Game
~~maintainer told me to~~ Makes removing stuff from the cutter actually
work right
## Changelog
No player-facing changes
This commit is contained in:
OrionTheFox
2023-06-21 04:25:06 -04:00
committed by GitHub
parent 8730cf3238
commit ee53c92a97
+2 -2
View File
@@ -71,12 +71,12 @@
if(!isnull(stored_blade))
stored_blade.forceMove(drop_location())
/obj/item/papercutter/Exited(atom/movable/leaving, direction)
/obj/item/papercutter/Exited(atom/movable/leaving, atom/new_loc)
. = ..()
if(leaving == stored_paper)
stored_paper = null
if(leaving == stored_blade)
stored_blade = null
return ..()
/obj/item/papercutter/suicide_act(mob/living/user)
if(iscarbon(user) && stored_blade)