To sum up above for everyone reading past and had trouble like I did reading this:
In the file location in the mod, "dark-matter-replicators_0.7.13\prototypes\raw-resources.lua", Your first 40 lines should look like below:
local resource_autoplace = require("resource-autoplace");
data:extend(
{
{
type = "tool",
name = "tenemut",
icon = "dark-matter-replicators/graphics/icons/tenemut.png",
icon_size = 32,
subgroup = "raw-resource",
order = "f[tenemut]",
stack_size = 200,
durability = 1,
durability_description_key = "description.science-pack-remaining-amount"
},
{
type = "resource",
name = "tenemut",
icon = "dark-matter-replicators/graphics/icons/tenemut.png",
icon_size = 32,
flags = {"placeable-neutral"},
order = "b-b-rep",
tree_removal_probability = 0.2,
tree_removal_max_distance = 16 * 16,
minable = {
mining_particle = "tenemut-particle",
mining_time = 2.5,
result = "tenemut"
},
collision_box = {{ -0.1, -0.1}, {0.1, 0.1}},
selection_box = {{ -0.5, -0.5}, {0.5, 0.5}},
autoplace = resource_autoplace.resource_autoplace_settings{
name = "tenemut",
order = "b-b-rep",
base_density = 4,
has_starting_area_placement = false,
--resource_index = resource_autoplace.get_next_resource_index(),
regular_rq_factor_multiplier = 1,
starting_rq_factor_multiplier = 1
Thanks to everyone above who put in the effort to find a fix!