Skip to content

Commit

Permalink
bugfix: gps upgrades now use qdel instead of del
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladisvell committed Dec 10, 2023
1 parent c3f6dd0 commit 899e221
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/telesci/gps.dm
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ GLOBAL_LIST_EMPTY(GPS_list)

/obj/item/gps/attackby(obj/item/C as obj)
if(istype(C, /obj/item/gpsupgrade) && !upgraded)
upgraded = 1
del(C)
upgraded = TRUE
qdel(C)

#undef EMP_DISABLE_TIME

0 comments on commit 899e221

Please sign in to comment.