Skip to content
Open
Show file tree
Hide file tree
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/mining/machine_redemption.dm
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
if(scan_id)
var/accepted
for(var/req in req_access_claim)
if(req in ID.access)
if(req in ID.GetAccess())
accepted = TRUE
break
if(!accepted)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mining/salvage_redemption.dm
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
return ITEM_INTERACT_COMPLETE
var/claimed = FALSE
for(var/access in req_access_claim)
if(anyone_claim || (access in ID.access))
if(anyone_claim || (access in ID.GetAccess()))
ID.mining_points += points
ID.total_mining_points += points
to_chat(user, SPAN_NOTICE("<b>[points] Salvage Points</b> claimed. You have earned a total of <b>[ID.total_mining_points] Salvage Points</b> this Shift!"))
Expand Down
2 changes: 1 addition & 1 deletion code/modules/smithing/machinery/smart_hopper.dm
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
return ITEM_INTERACT_COMPLETE
var/claimed = FALSE
for(var/access in req_access_claim)
if(anyone_claim || (access in ID.access))
if(anyone_claim || (access in ID.GetAccess()))
ID.mining_points += points
ID.total_mining_points += points
to_chat(user, SPAN_NOTICE("<b>[points] Mining Points</b> claimed. You have earned a total of <b>[ID.total_mining_points] Mining Points</b> this Shift!"))
Expand Down
Loading