[MIRROR] Fixes the ORM not correcty granting mining points if adding ore by hand [MDB IGNORE] (#22171)

* Fixes the ORM not correcty granting mining points if adding ore by hand (#76447)

## About The Pull Request
This was an oversight from back when material datums were redone.
Ideally you should still be dumping your ore on the floor so the ORM can
slurp it up, but if for some reason you just want to add it by hand,
this works fine.

## Why It's Good For The Game
Consistency good.

Fixes #76409

## Changelog
🆑 Vekter
fix: Fixed the ORM not granting mining points if you added ore by hand
instead of dumping it on the floor.
/🆑

* Fixes the ORM not correcty granting mining points if adding ore by hand

---------

Co-authored-by: Vekter <TheVekter@users.noreply.github.com>
This commit is contained in:
SkyratBot
2023-07-01 14:09:52 -04:00
committed by GitHub
co-authored by Vekter
parent 78e08b2e7e
commit 1ad69e8c7c
+2 -1
View File
@@ -210,7 +210,8 @@
if(isnull(O.refined_type))
to_chat(user, span_warning("[O] has already been refined!"))
return
smelt_ore(O)
return TRUE
return ..()
/obj/machinery/mineral/ore_redemption/AltClick(mob/living/user)