Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/modules/shuttle/supply.dm
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,11 @@ GLOBAL_LIST_INIT(blacklisted_cargo_types, typecacheof(list(

for(var/obj/item/card/id/miner in shuttle_area.gem_payout)
miner.mining_points += shuttle_area.gem_payout[miner]
shuttle_area.gem_payout &= miner
playsound(miner, 'sound/machines/ping.ogg', 15, TRUE)
var/mob/card_holder = recursive_loc_check(miner, /mob)
if(ismob(card_holder))
to_chat(card_holder, "You have been credited with [shuttle_area.gem_payout[miner]] mining points from sold gems!")
shuttle_area.gem_payout.Remove(miner)

if(ex.exported_atoms)
ex.exported_atoms += "." //ugh
Expand Down