Skip to content

Commit

Permalink
un-revert application.conf comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
asiekierka committed May 30, 2023
1 parent 555ae0e commit 1c163dd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ opencomputers {
# the `connect` method on internet card components becomes available.
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
# to the addresses / address ranges in this list. It it is present in this
# list, the request will be denied.
Expand All @@ -985,9 +985,9 @@ opencomputers {
"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,
# 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
# whitelist and the blacklist, the blacklist will win.
# Entries are of the same format as in the blacklist. Examples:
Expand Down Expand Up @@ -1100,7 +1100,7 @@ opencomputers {
# Radius in blocks of the disintegration behavior for each active input.
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.
# 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
Expand Down Expand Up @@ -1312,7 +1312,7 @@ opencomputers {
geolyzerNoise: 2

# 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
# other mods, set this to true.
disassembleAllTheThings: false
Expand All @@ -1323,7 +1323,7 @@ opencomputers {
# this chance of breaking in the process.
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.
disassemblerInputBlacklist: [
"minecraft:fire"
Expand Down Expand Up @@ -1597,15 +1597,15 @@ opencomputers {

# Chunkloader Upgrade settings.
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
# this list.
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
# 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
# blacklist will win.
dimWhitelist: []
Expand Down

0 comments on commit 1c163dd

Please sign in to comment.