Skip to content

Commit

Permalink
Merge branch 'master' into gun-qol
Browse files Browse the repository at this point in the history
  • Loading branch information
Sun-Soaked authored May 31, 2024
2 parents e84dc4e + ff1b4cb commit 88faeac
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/game/machinery/autolathe.dm
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
)

/obj/machinery/autolathe/Initialize()
AddComponent(/datum/component/material_container,list(/datum/material/iron, /datum/material/glass, /datum/material/plastic, /datum/material/silver, /datum/material/gold, /datum/material/plasma, /datum/material/uranium, /datum/material/titanium), 0, TRUE, null, null, CALLBACK(src, PROC_REF(AfterMaterialInsert)))
AddComponent(/datum/component/material_container,list(/datum/material/iron, /datum/material/glass, /datum/material/plastic, /datum/material/silver, /datum/material/gold, /datum/material/plasma, /datum/material/uranium, /datum/material/titanium, /datum/material/hellstone), 0, TRUE, null, null, CALLBACK(src, PROC_REF(AfterMaterialInsert)))
. = ..()

wires = new /datum/wires/autolathe(src)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mining/machine_redemption.dm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
var/points = 0
var/ore_multiplier = 1
var/point_upgrade = 1
var/list/ore_values = list(/datum/material/iron = 1, /datum/material/glass = 1, /datum/material/plasma = 15, /datum/material/silver = 16, /datum/material/gold = 18, /datum/material/titanium = 30, /datum/material/uranium = 30, /datum/material/diamond = 50, /datum/material/bluespace = 50, /datum/material/hellstone = 60)
var/list/ore_values = list(/datum/material/iron = 1, /datum/material/glass = 1, /datum/material/plasma = 15, /datum/material/silver = 16, /datum/material/gold = 18, /datum/material/titanium = 30, /datum/material/uranium = 30, /datum/material/diamond = 50, /datum/material/bluespace = 50)
/// Variable that holds a timer which is used for callbacks to `send_console_message()`. Used for preventing multiple calls to this proc while the ORM is eating a stack of ores.
var/console_notify_timer
var/datum/techweb/stored_research
Expand Down
1 change: 0 additions & 1 deletion code/modules/mining/machine_silo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ GLOBAL_LIST_EMPTY(silo_access_logs)
/datum/material/titanium,
/datum/material/bluespace,
/datum/material/plastic,
/datum/material/hellstone,
)
AddComponent(/datum/component/material_container, materials_list, INFINITY, allowed_types=/obj/item/stack, _disable_attackby=TRUE)

Expand Down
4 changes: 4 additions & 0 deletions html/changelogs/AutoChangeLog-pr-3045.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
author: FalloutFalcon
changes:
- {tweak: tweaked the new ore}
delete-after: true

0 comments on commit 88faeac

Please sign in to comment.