2021-06-25 02:14:57 -04:00
|
|
|
|
|
|
|
-- Settings
|
2021-06-25 16:14:47 -04:00
|
|
|
item_replicator_settings = {}
|
2021-06-25 02:14:57 -04:00
|
|
|
|
|
|
|
-- Do we log the api calls? (Great for debugging issues but not so good on a long running production server)
|
2021-06-25 17:21:13 -04:00
|
|
|
item_replicator_settings.log_api = false
|
2021-06-25 02:14:57 -04:00
|
|
|
|
|
|
|
-- Do we log that items were produced? (Great for debugging issues but not so good on a long running production server)
|
2021-06-25 16:14:47 -04:00
|
|
|
item_replicator_settings.log_production = true
|
2021-06-25 02:14:57 -04:00
|
|
|
|
2021-06-25 17:21:13 -04:00
|
|
|
-- Do we log deep into the bowels of the replicator?
|
|
|
|
item_replicator_settings.log_deep = false
|
|
|
|
|
2021-09-07 17:20:13 -04:00
|
|
|
-- Does the blacklist remove items from the allowed list if someone or mod added the item to the blacklist?
|
|
|
|
item_replicator_settings.blacklist_removes_allowed = true
|
|
|
|
|
|
|
|
-- Does the mod not allow the Replicator to be replicated by a Replicator?
|
|
|
|
item_replicator_settings.allow_self_replication = false
|
|
|
|
|
2021-06-25 02:14:57 -04:00
|
|
|
-- Testing the API (Turn these false when not testing)
|
2021-06-25 16:14:47 -04:00
|
|
|
item_replicator_settings.run_test = true
|
|
|
|
item_replicator_settings.exit_after_test = false
|
2021-06-25 02:14:57 -04:00
|
|
|
|
|
|
|
-- If an item is not in the known items list it will equal this value
|
2021-06-25 16:14:47 -04:00
|
|
|
item_replicator_settings.allow_unknown = true
|
|
|
|
item_replicator_settings.unknown_item_time = 30
|
|
|
|
item_replicator_settings.unknown_item_amount = 1
|
|
|
|
|
|
|
|
-- Is the Replicator craftable?
|
|
|
|
item_replicator_settings.craft = true
|