Skip to content

Commit

Permalink
Merge branch 'dev' into wooden-boards
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Dec 14, 2023
2 parents 721c150 + 1c8a8f9 commit b5f0f1e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion angelsrefining/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
Version: 0.12.5
Date: xx.xx.xxxx
Changes:
- Added an beaconable electric offshore waterpump
- Moved Electro-refining to purple science. Replaced Crystal catalyst with Hybrid catalyst in Thorium sorting recipe (909)
- Compatibility with Bob's changes (911)
- Enabled productivity modules for Thorium Ore sorting recipe (929)
- Added custom error message for when trying to insert invalid items into a barreling pump (933)
- Changed Crystal catalyst recipe to require Crystallizer 2 (943)
- Removed Crystal catalyst from Bob's gem ore crystallization recipes (943)
- Changed the Recipe Builder to make it easier for other mods to add their own materials (950)
- Added a beaconable electric offshore waterpump (952)
---------------------------------------------------------------------------------------------------
Version: 0.12.4
Date: 23.02.2023
Expand Down
13 changes: 7 additions & 6 deletions angelsrefining/prototypes/buildings/sea-pump.lua
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,10 @@ data:extend({
{
type = "resource",
name = "sea-pump-resource",
icon = "__angelsrefining__/graphics/entity/sea-pump/empty.png",
icon_size = 1,
icon_mipmaps = 1,
localised_name = { "fluid-name.water" },
icon = "__base__/graphics/icons/fluid/water.png",
icon_size = 64,
icon_mipmaps = 4,
flags = { "placeable-neutral", "not-on-map" },
selectable_in_game = false,
category = "sea-pump",
Expand Down Expand Up @@ -184,7 +185,7 @@ data:extend({
icon = "__angelsrefining__/graphics/icons/sea-pump-ico.png",
icon_size = 32,
icon_mipmaps = 1,
flags = { "placeable-neutral", "player-creation", "hidden" },
flags = { "placeable-neutral", "player-creation" },
minable = { mining_time = 0.5, result = "sea-pump" },
placeable_by = { item = "sea-pump", count = 1 },
resource_categories = { "sea-pump" },
Expand Down Expand Up @@ -215,13 +216,13 @@ data:extend({
},
energy_usage = "250kW",
mining_speed = 1, -- how fast it 'ticks'
base_productivity = -1, -- disable productivity
base_productivity = -0.8, -- partially disable mining productivity. Setting this more negative seems to have no effect
resource_searching_radius = 0.49,
vector_to_place_result = { 0, 0 },
module_specification = {
module_slots = 2,
},
allowed_effects = { "speed", "consumption", "pollution" }, -- disallow productivity such that mining bonus does not apply
allowed_effects = { "speed", "consumption", "pollution" }, -- disallow productivity modules
radius_visualisation_picture = {
filename = "__base__/graphics/entity/pumpjack/pumpjack-radius-visualization.png",
width = 12,
Expand Down

0 comments on commit b5f0f1e

Please sign in to comment.