From 3427ae03466a5751eb20438f635dbe230e462c1c Mon Sep 17 00:00:00 2001 From: Someone Date: Sat, 12 Jan 2019 23:40:35 +0100 Subject: [PATCH] gitify, so I dont delete my stuff again. --- License.txt | 19 +++++++++++++++++++ changelog.txt | 6 ++++++ data.lua | 11 +++++++++++ info.json | 10 ++++++++++ 4 files changed, 46 insertions(+) create mode 100644 License.txt create mode 100644 changelog.txt create mode 100644 data.lua create mode 100644 info.json diff --git a/License.txt b/License.txt new file mode 100644 index 0000000..ae7e15e --- /dev/null +++ b/License.txt @@ -0,0 +1,19 @@ +Copyright (c) 2018-2020 Someone + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/changelog.txt b/changelog.txt new file mode 100644 index 0000000..8adaf46 --- /dev/null +++ b/changelog.txt @@ -0,0 +1,6 @@ +--------------------------------------------------------------------------------------------------- +Version: 0.16.3 +Date: 2018-07-29 + + Changed: + - Added changelog and License files for future reference. No functional changes. diff --git a/data.lua b/data.lua new file mode 100644 index 0000000..283de2e --- /dev/null +++ b/data.lua @@ -0,0 +1,11 @@ +-- Trivial mod by someone1337 uploaded because of our LAN game. +local infinity_chest = util.table.deepcopy(data.raw["infinity-container"]["infinity-chest"]) + +-- make it a buffer chest. +infinity_chest.logistic_mode = "buffer" + +-- bots dont try to pickup not (yet) existent items. +-- we therefore need a waaaay larger inventory and fill it up. +infinity_chest.inventory_size = 129 + +data:extend({infinity_chest}) diff --git a/info.json b/info.json new file mode 100644 index 0000000..65a14b0 --- /dev/null +++ b/info.json @@ -0,0 +1,10 @@ +{ + "name": "some-infinitychest", + "version": "0.16.3", + "title": "Advanced infinity chest", + "author": "someone1337", + "homepage": "https://git.somenet.org/pub/jan/factorio_some-infinitychest.git", + "dependencies": ["base"], + "description": "Extends infinity-chest to behave like buffer chests. Also bots dont try to pick up not (yet) existent items. Therefore we need a waaaay larger inventory and fill it up. For testing of bot-enabled setups.", + "factorio_version": "0.16" +} -- 2.43.0