Mining Loadouts (#17890)

* mining stuff

* some missed things in borg pr
This commit is contained in:
Cameron Lennox
2025-06-21 21:37:29 -04:00
committed by GitHub
parent b5ba4a465f
commit 38e2bc1df1
6 changed files with 63 additions and 24 deletions
@@ -428,7 +428,7 @@ emp_act
if(stat != DEAD && istype(O,/obj/item) && trash_catching && vore_selected) //Ported from chompstation
var/obj/item/I = O
if(adminbus_trash || is_type_in_list(I, GLOB.edible_trash) && I.trash_eatable && !is_type_in_list(I, GLOB.item_vore_blacklist))
visible_message(span_warning("[I] is thrown directly into [src]'s [lowertext(vore_selected.name)]!"))
visible_message(span_vwarning("[I] is thrown directly into [src]'s [lowertext(vore_selected.name)]!"))
I.throwing = 0
I.forceMove(vore_selected)
return
+1 -1
View File
@@ -262,7 +262,7 @@
if(stat != DEAD && istype(O,/obj/item) && trash_catching && vore_selected) //ported from chompstation
var/obj/item/I = O
if(adminbus_trash || is_type_in_list(I, GLOB.edible_trash) && I.trash_eatable && !is_type_in_list(I, GLOB.item_vore_blacklist))
visible_message(span_warning("[I] is thrown directly into [src]'s [lowertext(vore_selected.name)]!"))
visible_message(span_vwarning("[I] is thrown directly into [src]'s [lowertext(vore_selected.name)]!"))
I.throwing = 0
I.forceMove(vore_selected)
return