Skip to content

Commit

Permalink
Update backpack.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
hyyda authored Jan 12, 2025
1 parent e573fb6 commit 31ad7ec
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions code/game/objects/items/weapons/storage/backpack.dm
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
if(istype(I, /obj/item/weapon/storage/backpack/holding) && !I.crit_fail && !(I == src))
to_chat(user, "<span class='red'>The Bluespace interfaces of the two devices conflict and malfunction.</span>")
qdel(I)
Make_Anomaly(150 SECONDS, /obj/effect/anomaly/bhole)
Make_Anomaly(50 SECONDS, /obj/effect/anomaly/bhole)

return ..()

Expand All @@ -69,7 +69,6 @@
return FALSE
if(istype(W, /obj/item/weapon/storage/backpack/holding))
to_chat(usr, "<span class='red'>The Bluespace interfaces of the two devices conflict and malfunction.</span>")
Make_Anomaly(150 SECONDS, /obj/effect/anomaly/bhole)
return FALSE
return TRUE

Expand All @@ -78,8 +77,8 @@
var/obj/effect/anomaly/anomaly = new current_anomaly(targloc)
anomaly.anomalyEffect()
sleep(delay_time)
qdel(current_anomaly)

anomaly.Destroy()
/obj/item/weapon/storage/backpack/holding/proc/failcheck(mob/user)
if (prob(src.reliability))
return 1 //No failure
Expand Down

0 comments on commit 31ad7ec

Please sign in to comment.