From 33570d10e6c6a9efbf115db9486be5378d45e9f6 Mon Sep 17 00:00:00 2001
From: Novacat <35587478+Novacat@users.noreply.github.com>
Date: Mon, 17 Feb 2020 01:33:15 -0500
Subject: [PATCH] Update ore_box.dm
---
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 39c86052f1..8a16568e8a 100644
--- a/code/modules/mining/ore_box.dm
+++ b/code/modules/mining/ore_box.dm
@@ -42,10 +42,6 @@
to_chat(user, "That's an [src].")
to_chat(user, desc)
- // Borgs can now check contents too.
- if((!istype(user, /mob/living/carbon/human)) && (!istype(user, /mob/living/silicon/robot)))
- return
-
if(!Adjacent(user)) //Can only check the contents of ore boxes if you can physically reach them.
return
@@ -69,13 +65,8 @@
set category = "Object"
set src in view(1)
-<<<<<<< HEAD:code/modules/mining/satchel_ore_boxdm.dm
- if(!istype(usr, /mob/living/carbon/human) && !istype(usr, /mob/living/silicon/robot)) //Only living, intelligent creatures with gripping aparatti can empty ore boxes.
- to_chat(usr, "You are physically incapable of emptying the ore box.")
-=======
if(!ishuman(usr) && !isrobot(usr)) //Only living, intelligent creatures with gripping aparatti can empty ore boxes.
to_chat(usr, "You are physically incapable of emptying the ore box.")
->>>>>>> a862d55... Fixes mining borg ore box movement on sand with a mining satchel equipped (#6693):code/modules/mining/ore_box.dm
return
if(usr.stat || usr.restrained())
@@ -88,21 +79,13 @@
add_fingerprint(usr)
if(contents.len < 1)
-<<<<<<< HEAD:code/modules/mining/satchel_ore_boxdm.dm
- to_chat(usr, "The ore box is empty.")
-=======
to_chat(usr, "The ore box is empty.")
->>>>>>> a862d55... Fixes mining borg ore box movement on sand with a mining satchel equipped (#6693):code/modules/mining/ore_box.dm
return
for (var/obj/item/weapon/ore/O in contents)
contents -= O
O.loc = src.loc
-<<<<<<< HEAD:code/modules/mining/satchel_ore_boxdm.dm
- to_chat(usr, "You empty the ore box.")
-=======
to_chat(usr, "You empty the ore box.")
->>>>>>> a862d55... Fixes mining borg ore box movement on sand with a mining satchel equipped (#6693):code/modules/mining/ore_box.dm
return