From a527ae97e4a4e5d82dac874cbc60b07a2c3fa393 Mon Sep 17 00:00:00 2001
From: Nadyr <41974248+Darlantanis@users.noreply.github.com>
Date: Sun, 25 Sep 2022 17:21:44 -0400
Subject: [PATCH] powder that makes you say yes
---
code/modules/mining/ore_box.dm | 17 -----------------
1 file changed, 17 deletions(-)
diff --git a/code/modules/mining/ore_box.dm b/code/modules/mining/ore_box.dm
index fc77f12377..caade5fce9 100644
--- a/code/modules/mining/ore_box.dm
+++ b/code/modules/mining/ore_box.dm
@@ -32,30 +32,14 @@
/obj/structure/ore_box/attackby(obj/item/weapon/W as obj, mob/user as mob)
if (istype(W, /obj/item/weapon/ore))
-<<<<<<< HEAD
- if (W.name != "strange rock")
- user.remove_from_mob(W)
- src.contents += W
- else
- to_chat(user,"The [W] bounces out of the [src]!")
-=======
var/obj/item/weapon/ore/ore = W
stored_ore[ore.material]++
user.remove_from_mob(W)
qdel(ore)
->>>>>>> fe004aefc3... Merge pull request #13799 from Cameron653/MINING_ADJUSTMENTS
else if (istype(W, /obj/item/weapon/storage/bag/ore))
var/obj/item/weapon/storage/bag/ore/S = W
S.hide_from(user)
-<<<<<<< HEAD
- for(var/obj/item/weapon/ore/O in S.contents)
- if (O.name != "strange rock")
- S.remove_from_storage(O, src) //This will move the item to this item's contents
- else
- to_chat(user,"The [O] bounces out of the [src]!")
- to_chat(user,"You empty the satchel into the [src].")
-=======
for(var/ore in S.stored_ore)
if(S.stored_ore[ore] > 0)
var/ore_amount = S.stored_ore[ore] // How many ores does the satchel have?
@@ -63,7 +47,6 @@
S.stored_ore[ore] = 0 // Set the value of the ore in the satchel to 0.
S.current_capacity = 0 // Set the amount of ore in the satchel to 0.
to_chat(user, "You empty the satchel into the box.")
->>>>>>> fe004aefc3... Merge pull request #13799 from Cameron653/MINING_ADJUSTMENTS
return