un-revert application.conf comment fixes

This commit is contained in:
Adrian Siekierka 2023-05-30 20:30:26 +02:00
parent 555ae0e695
commit 1c163dd701

View File

@ -963,7 +963,7 @@ opencomputers {
# the `connect` method on internet card components becomes available. # the `connect` method on internet card components becomes available.
enableTcp: true enableTcp: true
# This is a list of blacklisted domain names. If an HTTP request is made # This is a list of forbidden domain names. If an HTTP request is made
# or a socket connection is opened the target address will be compared # or a socket connection is opened the target address will be compared
# to the addresses / address ranges in this list. It it is present in this # to the addresses / address ranges in this list. It it is present in this
# list, the request will be denied. # list, the request will be denied.
@ -985,9 +985,9 @@ opencomputers {
"172.16.0.0/12" "172.16.0.0/12"
] ]
# This is a list of whitelisted domain names. Requests may only be made # This is a list of allowed domain names. Requests may only be made
# to addresses that are present in this list. If this list is empty, # to addresses that are present in this list. If this list is empty,
# requests may be made to all addresses not blacklisted. Note that the # requests may be made to all addresses not forbidden. Note that the
# blacklist is always applied, so if an entry is present in both the # blacklist is always applied, so if an entry is present in both the
# whitelist and the blacklist, the blacklist will win. # whitelist and the blacklist, the blacklist will win.
# Entries are of the same format as in the blacklist. Examples: # Entries are of the same format as in the blacklist. Examples:
@ -1100,7 +1100,7 @@ opencomputers {
# Radius in blocks of the disintegration behavior for each active input. # Radius in blocks of the disintegration behavior for each active input.
disintegrationRange: 1 disintegrationRange: 1
# Whitelisted potions, i.e. potions that will be used for the potion # Allowed potions, i.e. potions that will be used for the potion
# behaviors nanomachines may trigger. This can contain strings or numbers. # behaviors nanomachines may trigger. This can contain strings or numbers.
# In the case of strings, it has to be the internal name of the potion, # In the case of strings, it has to be the internal name of the potion,
# in case of a number it has to be the potion ID. Add any potion effects # in case of a number it has to be the potion ID. Add any potion effects
@ -1312,7 +1312,7 @@ opencomputers {
geolyzerNoise: 2 geolyzerNoise: 2
# By default the disassembler can only be used to disassemble items from # By default the disassembler can only be used to disassemble items from
# OpenComputers itself (or objects whitelisted via the API). If you'd # OpenComputers itself (or objects allowed via the API). If you'd
# like to allow the disassembler to work on all kinds of items, even from # like to allow the disassembler to work on all kinds of items, even from
# other mods, set this to true. # other mods, set this to true.
disassembleAllTheThings: false disassembleAllTheThings: false
@ -1323,7 +1323,7 @@ opencomputers {
# this chance of breaking in the process. # this chance of breaking in the process.
disassemblerBreakChance: 0.05 disassemblerBreakChance: 0.05
# Names of items / blocks that are blacklisted. Recipes containing these # Names of items / blocks that are forbidden. Recipes containing these
# as inputs will be ignored by the disassembler. # as inputs will be ignored by the disassembler.
disassemblerInputBlacklist: [ disassemblerInputBlacklist: [
"minecraft:fire" "minecraft:fire"
@ -1597,15 +1597,15 @@ opencomputers {
# Chunkloader Upgrade settings. # Chunkloader Upgrade settings.
chunkloader { chunkloader {
# This is a list of blacklisted dimensions in the form of numeric IDs. # This is a list of forbidden dimensions in the form of numeric IDs.
# Chunkloaders may only be activated in dimensions that aren't present in # Chunkloaders may only be activated in dimensions that aren't present in
# this list. # this list.
dimBlacklist: [] dimBlacklist: []
# This is a list of whitelisted dimensions in the form of numeric IDs. # This is a list of allowed dimensions in the form of numeric IDs.
# Chunkloaders may only be activated in dimensions that are present in # Chunkloaders may only be activated in dimensions that are present in
# this list. If this list is empty, chunkloaders may be activated to all # this list. If this list is empty, chunkloaders may be activated to all
# dimensions not blacklisted. Note that the blacklist is always applied, # dimensions not forbidden. Note that the blacklist is always applied,
# so if an entry is present in both the whitelist and the blacklist, the # so if an entry is present in both the whitelist and the blacklist, the
# blacklist will win. # blacklist will win.
dimWhitelist: [] dimWhitelist: []