Code: Select all
/c game.local_player.force.manual_crafting_speed_modifier=2
Code: Select all
/c game.player.print(game.local_player.force.manual_crafting_speed_modifier)
Code: Select all
/c game.local_player.force.manual_crafting_speed_modifier=2
Code: Select all
/c game.player.print(game.local_player.force.manual_crafting_speed_modifier)
Yep that is probably causing the issue.PigKing107 wrote:I have a few mods installed and the only one that I could think of to affect this is http://www.factoriomods.com/mods/crafting-equipment
Code: Select all
script.on_event(defines.events.on_tick, function(event)
for player_index,player in pairs(game.players) do
if player.connected then
local craftingMultiplier = 0
local canCraftAdv = false
local canCraftFluid = false
local canSmelt = false
local canCraftChem = false
if player.character then
Code: Select all
player.force.manual_crafting_speed_modifier = craftingMultiplier