Factorio+

by fishbus

A mod that builds upon and tweaks the vanilla experience with a little bit of everything: crafting, furnaces, resources, turrets, vehicles, enemies and weapons. [Built for base 2.1 Factorio - Works with Space Age]

Overhaul
3 days ago
0.18 - 2.1
31.9K
Transportation Logistics Trains Combat Armor Character Enemies Environment Mining Fluids Logistic network Manufacturing Power Storage

b Gleba Bug

21 hours ago

Running around then randomly this error appears:

The mod Factorio+ (2.9.0) caused a non-recoverable error.
Please report this error to the mod author.

Error while running event factorioplus::on_entity_spawned (ID 155)
factorioplus/control.lua:40: attempt to perform arithmetic on field 'speed' (a nil value)
stack traceback:
factorioplus/control.lua:40: in function 'EnemyBiterBuff'
factorioplus/control.lua:32: in function <factorioplus/control.lua:32>

17 hours ago

Update, this has completely soft locked me lmao

17 hours ago

This only started happening on Gleba landing

13 hours ago

Heya,

I will look into it.

In the meantime, can you open the mods control.lua and look for the EnemyBiterBuff function and replace it all with:

-- Randomly give enemies a small speed buff.
function EnemyBiterBuff(entity)
if ( entity.has_flag("breaths-air") and entity.speed ~=nil ) then
if (math.random()>0.9) then
entity.speed = entity.speed * 1.35
end
end
end

Let me know if that works!

Cheers

New response