mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 20:43:10 +01:00
Merge branch 'master' into development
This commit is contained in:
@@ -123,9 +123,10 @@
|
||||
var/turf/T = get_turf(input)
|
||||
for(var/obj/item/O in T)
|
||||
if(!O) return
|
||||
if(istype(O, /obj/item/stack) && stack_storage[O.type] != null)
|
||||
stack_storage[O.type]++
|
||||
qdel(O)
|
||||
var/obj/item/stack/S = O
|
||||
if(istype(S) && stack_storage[S.type] != null)
|
||||
stack_storage[S.type] += S.amount
|
||||
qdel(S)
|
||||
else
|
||||
O.forceMove(output.loc)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user