Shortcuts for 2.0


Adds a host of useful shortcuts and custom inputs to improve QOL. Shortcuts for: - Toggles for equipment and personal logistic requests - Artillery cannon fire toggle - Environment deconstruction planner - Vehicle settings and train manual mode - Rail block visualisation, player lamp, customizable grid overlay and far zoom - Shortcuts for various other mods Original mod by npc_strider (morley376): mods.factorio.com/mod/Shortcuts

Utilities
4 months ago
0.18 - 2.0
54.5K
Transportation Trains Combat Logistic network Blueprints

g error with freezer mod

3 months ago

i tried installing the freezer mod by estgamer and get the following error

"Failed to load mods: Error in assignID : Item with name "Cargo-Wagon-freezer-equipment" does not exist`
source: disabled-cargo-wagon-freezer-equipment (belt-immunity-equipment)

i tried disabling everything but base mods , shortcuts and freezer mod

3 months ago

i can confirm this, installing freezer mode, shortcut one dosen't load.
i uninstall the freezer mod it's working perfectly.

3 months ago

This shortcut mod disables all equipments based on belt-immunity-equipment prototype. The freezer mod has equipment based on that prototype and breaks as a result. Unchecking the setting releated to belt-immunity-equipment should allow freezer mod to load.

3 months ago

Thank You!

3 months ago

independent of the workaround "Unchecking the setting releated to belt-immunity-equipment should allow freezer mod to load."
this mod should not crash https://prnt.sc/ynCNyWEECROD

2 months ago
(updated 2 months ago)

The proper fix for this, at the code level, is due to the take_result parameter. The freezer mod defines a take_result, and it's not the same name as the equipment. This mod assumes that the take result is the same name as the equipment. Changing /prototypes/updates-disabled-equipment.lua:44 from:

disabled_equipment.take_result = name

to:

disabled_equipment.take_result = disabled_equipment.take_result or name

Fixes the issue without having to entirely disable the feature for belt immunity equipment.

New response