mirror of
https://github.com/Xevion/project-cybersyn.git
synced 2025-12-09 16:08:11 -06:00
Version: 1.2.8
Date: 2022-1-5
Features:
- Improved placeholder cybernetic combinator art
- Added a wagon control setting to bar unfiltered slots in adjacent cargo wagons
- Added a setting and keybind for toggling on or off the central planner
Changes:
- Sped up the rate at which copy-paste by blueprint will be noticed
Bugfixes:
- Fixed a bug with combinators sometimes failing to connect with train stops
- Fixed wagon control combinators outputting wagon contents after inserters have already taken out items
- Fixed a rare crash on world migration
Scripting:
- Added missing return values to some interface functions
- Migrated to non-deprecated flib modules
31 lines
586 B
Lua
31 lines
586 B
Lua
--By Mami
|
|
flib = require('__flib__.data-util')
|
|
|
|
require('scripts.constants')
|
|
require('prototypes.item')
|
|
require('prototypes.tech')
|
|
require('prototypes.entity')
|
|
require('prototypes.signal')
|
|
require('prototypes.misc')
|
|
|
|
data:extend({
|
|
combinator_entity,
|
|
combinator_out_entity,
|
|
combinator_item,
|
|
combinator_recipe,
|
|
cybersyn_tech,
|
|
subgroup_signal,
|
|
priority_signal,
|
|
r_threshold_signal,
|
|
locked_slots_signal,
|
|
missing_train_icon,
|
|
lost_train_icon,
|
|
nonempty_train_icon,
|
|
{
|
|
type = "custom-input",
|
|
name = "cybersyn-toggle-planner",
|
|
key_sequence = "",
|
|
consuming = "game-only"
|
|
}
|
|
})
|