mirror of
https://github.com/kaboomserver/server.git
synced 2024-11-28 02:05:34 -05:00
Add latest files
Former-commit-id: d3bd004bf48cb48245ebc939d959ace04d96ae61
This commit is contained in:
parent
a2dadcbdaf
commit
80bf0c43a6
57 changed files with 2003 additions and 1508 deletions
Binary file not shown.
|
@ -1,44 +0,0 @@
|
|||
//
|
||||
// This system policy file grants a set of default permissions to all domains
|
||||
// and can be configured to grant additional permissions to modules and other
|
||||
// code sources. The code source URL scheme for modules linked into a
|
||||
// run-time image is "jrt".
|
||||
//
|
||||
// For example, to grant permission to read the "foo" property to the module
|
||||
// "com.greetings", the grant entry is:
|
||||
//
|
||||
// grant codeBase "jrt:/com.greetings" {
|
||||
// permission java.util.PropertyPermission "foo", "read";
|
||||
// };
|
||||
//
|
||||
|
||||
// default permissions granted to all domains
|
||||
grant {
|
||||
// allows anyone to listen on dynamic ports
|
||||
permission java.net.SocketPermission "localhost:0", "listen";
|
||||
|
||||
// "standard" properies that can be read by anyone
|
||||
permission java.util.PropertyPermission "java.version", "read";
|
||||
permission java.util.PropertyPermission "java.vendor", "read";
|
||||
permission java.util.PropertyPermission "java.vendor.url", "read";
|
||||
permission java.util.PropertyPermission "java.class.version", "read";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "os.version", "read";
|
||||
permission java.util.PropertyPermission "os.arch", "read";
|
||||
permission java.util.PropertyPermission "file.separator", "read";
|
||||
permission java.util.PropertyPermission "path.separator", "read";
|
||||
permission java.util.PropertyPermission "line.separator", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.specification.version", "read";
|
||||
permission java.util.PropertyPermission "java.specification.vendor", "read";
|
||||
permission java.util.PropertyPermission "java.specification.name", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.vm.specification.version", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.vm.specification.vendor", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"java.vm.specification.name", "read";
|
||||
permission java.util.PropertyPermission "java.vm.version", "read";
|
||||
permission java.util.PropertyPermission "java.vm.vendor", "read";
|
||||
permission java.util.PropertyPermission "java.vm.name", "read";
|
||||
};
|
File diff suppressed because it is too large
Load diff
|
@ -1,6 +0,0 @@
|
|||
// Default US Export policy file.
|
||||
|
||||
grant {
|
||||
// There is no restriction to any algorithms.
|
||||
permission javax.crypto.CryptoAllPermission;
|
||||
};
|
|
@ -1,14 +0,0 @@
|
|||
// Some countries have import limits on crypto strength. This policy file
|
||||
// is worldwide importable.
|
||||
|
||||
grant {
|
||||
permission javax.crypto.CryptoPermission "DES", 64;
|
||||
permission javax.crypto.CryptoPermission "DESede", *;
|
||||
permission javax.crypto.CryptoPermission "RC2", 128,
|
||||
"javax.crypto.spec.RC2ParameterSpec", 128;
|
||||
permission javax.crypto.CryptoPermission "RC4", 128;
|
||||
permission javax.crypto.CryptoPermission "RC5", 128,
|
||||
"javax.crypto.spec.RC5ParameterSpec", *, 12, *;
|
||||
permission javax.crypto.CryptoPermission "RSA", *;
|
||||
permission javax.crypto.CryptoPermission *, 128;
|
||||
};
|
|
@ -1,13 +0,0 @@
|
|||
// Some countries have import limits on crypto strength, but may allow for
|
||||
// these exemptions if the exemption mechanism is used.
|
||||
|
||||
grant {
|
||||
// There is no restriction to any algorithms if KeyRecovery is enforced.
|
||||
permission javax.crypto.CryptoPermission *, "KeyRecovery";
|
||||
|
||||
// There is no restriction to any algorithms if KeyEscrow is enforced.
|
||||
permission javax.crypto.CryptoPermission *, "KeyEscrow";
|
||||
|
||||
// There is no restriction to any algorithms if KeyWeakening is enforced.
|
||||
permission javax.crypto.CryptoPermission *, "KeyWeakening";
|
||||
};
|
|
@ -1,6 +0,0 @@
|
|||
// Default US Export policy file.
|
||||
|
||||
grant {
|
||||
// There is no restriction to any algorithms.
|
||||
permission javax.crypto.CryptoAllPermission;
|
||||
};
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.bin/java/lib/compressedrefs/libjclse11_29.so
Normal file
BIN
.bin/java/lib/compressedrefs/libjclse11_29.so
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1840
.bin/java/lib/java.properties
Normal file
1840
.bin/java/lib/java.properties
Normal file
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -17,6 +17,8 @@
|
|||
#
|
||||
# ===========================================================================
|
||||
-j9vm KNOWN
|
||||
-server IGNORE
|
||||
-client IGNORE
|
||||
-hotspot IGNORE
|
||||
-classic IGNORE
|
||||
-native IGNORE
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.bin/java/lib/libsunec.so
Normal file
BIN
.bin/java/lib/libsunec.so
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.bin/java/lib/modules
Normal file
BIN
.bin/java/lib/modules
Normal file
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
9231c7fc1aa0f10c8e20526fca16e2dc34810fa9
|
Binary file not shown.
|
@ -1,206 +0,0 @@
|
|||
//
|
||||
// Permissions required by modules stored in a run-time image and loaded
|
||||
// by the platform class loader.
|
||||
//
|
||||
// NOTE that this file is not intended to be modified. If additional
|
||||
// permissions need to be granted to the modules in this file, it is
|
||||
// recommended that they be configured in a separate policy file or
|
||||
// ${java.home}/conf/security/java.policy.
|
||||
//
|
||||
|
||||
grant codeBase "jrt:/java.activation" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.compiler" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.corba" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.scripting" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.security.jgss" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.smartcardio" {
|
||||
permission javax.smartcardio.CardPermission "*", "*";
|
||||
permission java.lang.RuntimePermission "loadLibrary.j2pcsc";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.jca";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.util";
|
||||
permission java.util.PropertyPermission
|
||||
"javax.smartcardio.TerminalFactory.DefaultType", "read";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "os.arch", "read";
|
||||
permission java.util.PropertyPermission "sun.arch.data.model", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.library", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.t0GetResponse", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.t1GetResponse", "read";
|
||||
permission java.util.PropertyPermission
|
||||
"sun.security.smartcardio.t1StripLe", "read";
|
||||
// needed for looking up native PC/SC library
|
||||
permission java.io.FilePermission "<<ALL FILES>>","read";
|
||||
permission java.security.SecurityPermission "putProviderProperty.SunPCSC";
|
||||
permission java.security.SecurityPermission
|
||||
"clearProviderProperties.SunPCSC";
|
||||
permission java.security.SecurityPermission
|
||||
"removeProviderProperty.SunPCSC";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.sql" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.sql.rowset" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.xml.bind" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.xml.crypto" {
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.util";
|
||||
permission java.util.PropertyPermission "*", "read";
|
||||
permission java.security.SecurityPermission "putProviderProperty.XMLDSig";
|
||||
permission java.security.SecurityPermission
|
||||
"clearProviderProperties.XMLDSig";
|
||||
permission java.security.SecurityPermission
|
||||
"removeProviderProperty.XMLDSig";
|
||||
permission java.security.SecurityPermission
|
||||
"com.sun.org.apache.xml.internal.security.register";
|
||||
permission java.security.SecurityPermission
|
||||
"getProperty.jdk.xml.dsig.secureValidationPolicy";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.com.sun.org.apache.xml.internal.*";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.com.sun.org.apache.xpath.internal";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.com.sun.org.apache.xpath.internal.*";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/java.xml.ws" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.accessibility" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.awt";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.charsets" {
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "sun.nio.cs.map", "read";
|
||||
permission java.lang.RuntimePermission "charsetProvider";
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.jdk.internal.misc";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.nio.cs";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.crypto.ec" {
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.*";
|
||||
permission java.lang.RuntimePermission "loadLibrary.sunec";
|
||||
permission java.security.SecurityPermission "putProviderProperty.SunEC";
|
||||
permission java.security.SecurityPermission "clearProviderProperties.SunEC";
|
||||
permission java.security.SecurityPermission "removeProviderProperty.SunEC";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.crypto.cryptoki" {
|
||||
permission java.lang.RuntimePermission
|
||||
"accessClassInPackage.sun.security.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.nio.ch";
|
||||
permission java.lang.RuntimePermission "loadLibrary.j2pkcs11";
|
||||
permission java.util.PropertyPermission "sun.security.pkcs11.allowSingleThreadedModules", "read";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
permission java.util.PropertyPermission "os.arch", "read";
|
||||
permission java.util.PropertyPermission "jdk.crypto.KeyAgreement.legacyKDF", "read";
|
||||
permission java.security.SecurityPermission "putProviderProperty.*";
|
||||
permission java.security.SecurityPermission "clearProviderProperties.*";
|
||||
permission java.security.SecurityPermission "removeProviderProperty.*";
|
||||
permission java.security.SecurityPermission
|
||||
"getProperty.auth.login.defaultCallbackHandler";
|
||||
permission java.security.SecurityPermission "authProvider.*";
|
||||
// Needed for reading PKCS11 config file and NSS library check
|
||||
permission java.io.FilePermission "<<ALL FILES>>", "read";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.desktop" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.awt";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.dynalink" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.httpserver" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.internal.le" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.internal.vm.compiler" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.internal.vm.compiler.management" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.org.graalvm.compiler.hotspot";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.jdk.vm.ci.runtime";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.management.spi";
|
||||
permission java.lang.RuntimePermission "sun.management.spi.PlatformMBeanProvider.subclass";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.jsobject" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.localedata" {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.text.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.sun.util.*";
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.naming.dns" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.scripting.nashorn" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.scripting.nashorn.shell" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.security.auth" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.security.jgss" {
|
||||
permission java.security.AllPermission;
|
||||
};
|
||||
|
||||
grant codeBase "jrt:/jdk.zipfs" {
|
||||
permission java.io.FilePermission "<<ALL FILES>>", "read,write,delete";
|
||||
permission java.lang.RuntimePermission "fileSystemProvider";
|
||||
permission java.util.PropertyPermission "os.name", "read";
|
||||
};
|
||||
|
||||
// permissions needed by applications using java.desktop module
|
||||
grant {
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.beans";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.beans.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.sun.java.swing.plaf.*";
|
||||
permission java.lang.RuntimePermission "accessClassInPackage.com.apple.*";
|
||||
};
|
Binary file not shown.
|
@ -1,15 +1,15 @@
|
|||
# This is the main configuration file for Bukkit.
|
||||
# As you can see, there's actually not that much to configure without any plugins.
|
||||
# For a reference for any variable inside this file, check out the Bukkit Wiki at
|
||||
# https://www.spigotmc.org/go/bukkit-yml
|
||||
# http://wiki.bukkit.org/Bukkit.yml
|
||||
#
|
||||
# If you need help on this file, feel free to join us on irc or leave a message
|
||||
# on the forums asking for advice.
|
||||
#
|
||||
# IRC: #spigot @ irc.spi.gt
|
||||
# (If this means nothing to you, just go to https://www.spigotmc.org/go/irc )
|
||||
# Forums: https://www.spigotmc.org/
|
||||
# Bug tracker: https://www.spigotmc.org/go/bugs
|
||||
# (If this means nothing to you, just go to http://www.spigotmc.org/pages/irc/ )
|
||||
# Forums: http://www.spigotmc.org/
|
||||
# Bug tracker: http://www.spigotmc.org/go/bugs
|
||||
|
||||
|
||||
settings:
|
||||
|
|
50
commands.yml
50
commands.yml
|
@ -1,58 +1,34 @@
|
|||
# This is the commands configuration file for Bukkit.
|
||||
# For documentation on how to make use of this file, check out the Bukkit Wiki at
|
||||
# https://www.spigotmc.org/go/commands-yml
|
||||
# http://wiki.bukkit.org/Commands.yml
|
||||
#
|
||||
# If you need help on this file, feel free to join us on irc or leave a message
|
||||
# on the forums asking for advice.
|
||||
#
|
||||
# IRC: #spigot @ irc.spi.gt
|
||||
# (If this means nothing to you, just go to https://www.spigotmc.org/go/irc )
|
||||
# Forums: https://www.spigotmc.org/
|
||||
# Bug tracker: https://www.spigotmc.org/go/bugs
|
||||
# (If this means nothing to you, just go to http://www.spigotmc.org/pages/irc/ )
|
||||
# Forums: http://www.spigotmc.org/
|
||||
# Bug tracker: http://www.spigotmc.org/go/bugs
|
||||
|
||||
command-block-overrides: []
|
||||
ignore-vanilla-permissions: false
|
||||
unrestricted-advancements: false
|
||||
aliases:
|
||||
icanhasbukkit:
|
||||
- version $1-
|
||||
ban:
|
||||
- minecraft:ban $1-
|
||||
bukkit:reload:
|
||||
- []
|
||||
bukkit:rl:
|
||||
- []
|
||||
clear:
|
||||
- minecraft:clear $1-
|
||||
enchant:
|
||||
- minecraft:enchant $1-
|
||||
- essentials:etpall:
|
||||
essentials:etpall:
|
||||
- []
|
||||
- essentials:tpall:
|
||||
essentials:tpall:
|
||||
- []
|
||||
- etpall:
|
||||
etpall:
|
||||
- []
|
||||
gamemode:
|
||||
- minecraft:gamemode $1-
|
||||
give:
|
||||
- minecraft:give $1-
|
||||
help:
|
||||
- bukkit:help $1-
|
||||
kick:
|
||||
- minecraft:kick $1-
|
||||
kill:
|
||||
- minecraft:kill $1-
|
||||
list:
|
||||
- minecraft:list $1-
|
||||
me:
|
||||
- minecraft:me $1-
|
||||
minecraft:save-off:
|
||||
- []
|
||||
minecraft:stop:
|
||||
- []
|
||||
pardon:
|
||||
- minecraft:pardon $1-
|
||||
recipe:
|
||||
- minecraft:recipe $1-
|
||||
reload:
|
||||
- minecraft:reload $1-
|
||||
restart:
|
||||
|
@ -65,14 +41,6 @@ aliases:
|
|||
- []
|
||||
stop:
|
||||
- []
|
||||
teleport:
|
||||
- minecraft:teleport $1-
|
||||
time:
|
||||
- minecraft:time $1-
|
||||
tpall:
|
||||
- []
|
||||
weather:
|
||||
- minecraft:weather $1-
|
||||
xp:
|
||||
- minecraft:xp $1-
|
||||
unrestricted-advancements: false
|
||||
ignore-vanilla-permissions: false
|
||||
|
|
18
log4j2.xml
18
log4j2.xml
|
@ -1,18 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Configuration status="WARN" packages="com.mojang.util">
|
||||
<Appenders>
|
||||
<Console name="WINDOWS_COMPAT" target="SYSTEM_OUT"></Console>
|
||||
<Queue name="TerminalConsole">
|
||||
<PatternLayout pattern="[%d{HH:mm:ss} %level]: %msg%n" />
|
||||
</Queue>
|
||||
</Appenders>
|
||||
<Loggers>
|
||||
<Root level="info">
|
||||
<filters>
|
||||
<MarkerFilter marker="NETWORK_PACKETS" onMatch="DENY" onMismatch="NEUTRAL" />
|
||||
</filters>
|
||||
<AppenderRef ref="WINDOWS_COMPAT"/>
|
||||
<AppenderRef ref="TerminalConsole"/>
|
||||
</Root>
|
||||
</Loggers>
|
||||
</Configuration>
|
Binary file not shown.
201
paper.yml
201
paper.yml
|
@ -10,31 +10,7 @@
|
|||
# Paper Forums: https://aquifermc.org/
|
||||
|
||||
verbose: false
|
||||
config-version: 14
|
||||
settings:
|
||||
load-permissions-yml-before-plugins: false
|
||||
bungee-online-mode: true
|
||||
sleep-between-chunk-saves: false
|
||||
region-file-cache-size: 256
|
||||
save-empty-scoreboard-teams: false
|
||||
incoming-packet-spam-threshold: 300
|
||||
remove-invalid-statistics: false
|
||||
save-player-data: true
|
||||
use-versioned-world: false
|
||||
min-chunk-load-threads: 8
|
||||
suggest-player-names-when-null-tab-completions: true
|
||||
spam-limiter:
|
||||
tab-spam-increment: 2
|
||||
tab-spam-limit: 500
|
||||
enable-player-collisions: true
|
||||
player-auto-save-rate: -1
|
||||
max-player-auto-save-per-tick: -1
|
||||
use-alternative-luck-formula: false
|
||||
messages:
|
||||
kick:
|
||||
authentication-servers-down: ''
|
||||
flying-player: Flying is not enabled on this server
|
||||
flying-vehicle: Flying is not enabled on this server
|
||||
config-version: 13
|
||||
timings:
|
||||
enabled: true
|
||||
verbose: true
|
||||
|
@ -44,84 +20,60 @@ timings:
|
|||
- settings.bungeecord-addresses
|
||||
history-interval: 300
|
||||
history-length: 3600
|
||||
settings:
|
||||
min-chunk-load-threads: 8
|
||||
sleep-between-chunk-saves: false
|
||||
load-permissions-yml-before-plugins: false
|
||||
region-file-cache-size: 256
|
||||
enable-player-collisions: true
|
||||
save-empty-scoreboard-teams: false
|
||||
bungee-online-mode: true
|
||||
incoming-packet-spam-threshold: 300
|
||||
player-auto-save-rate: -1
|
||||
max-player-auto-save-per-tick: -1
|
||||
remove-invalid-statistics: false
|
||||
suggest-player-names-when-null-tab-completions: true
|
||||
save-player-data: true
|
||||
use-alternative-luck-formula: false
|
||||
watchdog:
|
||||
early-warning-every: 5000
|
||||
early-warning-delay: 10000
|
||||
spam-limiter:
|
||||
tab-spam-increment: 10
|
||||
tab-spam-limit: 500
|
||||
messages:
|
||||
kick:
|
||||
flying-player: Flying is not enabled on this server
|
||||
flying-vehicle: Flying is not enabled on this server
|
||||
authentication-servers-down: ''
|
||||
world-settings:
|
||||
default:
|
||||
portal-search-radius: 128
|
||||
optimize-explosions: true
|
||||
use-vanilla-world-scoreboard-name-coloring: false
|
||||
delay-chunk-unloads-by: 10s
|
||||
max-auto-save-chunks-per-tick: 24
|
||||
save-queue-limit-for-auto-save: 50
|
||||
enable-treasure-maps: true
|
||||
treasure-maps-return-already-discovered: false
|
||||
max-chunk-sends-per-tick: 81
|
||||
max-chunk-gens-per-tick: 10
|
||||
max-growth-height:
|
||||
cactus: 3
|
||||
reeds: 3
|
||||
baby-zombie-movement-speed: 0.5
|
||||
fishing-time-range:
|
||||
MinimumTicks: 100
|
||||
MaximumTicks: 600
|
||||
spawner-nerfed-mobs-should-jump: false
|
||||
despawn-ranges:
|
||||
soft: 32
|
||||
hard: 128
|
||||
keep-spawn-loaded: false
|
||||
falling-block-height-nerf: 0
|
||||
tnt-entity-height-nerf: 0
|
||||
water-over-lava-flow-speed: 5
|
||||
nether-ceiling-void-damage: false
|
||||
queue-light-updates: true
|
||||
game-mechanics:
|
||||
scan-for-legacy-ender-dragon: false
|
||||
allow-permanent-chunk-loaders: false
|
||||
disable-end-credits: false
|
||||
disable-chest-cat-detection: false
|
||||
disable-player-crits: false
|
||||
disable-sprint-interruption-on-attack: false
|
||||
shield-blocking-delay: 5
|
||||
allow-permanent-chunk-loaders: false
|
||||
disable-unloaded-chunk-enderpearl-exploit: true
|
||||
max-growth-height:
|
||||
cactus: 3
|
||||
reeds: 3
|
||||
fishing-time-range:
|
||||
MinimumTicks: 100
|
||||
MaximumTicks: 600
|
||||
despawn-ranges:
|
||||
soft: 32
|
||||
hard: 128
|
||||
falling-block-height-nerf: 0
|
||||
tnt-entity-height-nerf: 0
|
||||
frosted-ice:
|
||||
enabled: true
|
||||
delay:
|
||||
min: 20
|
||||
max: 40
|
||||
lootables:
|
||||
auto-replenish: false
|
||||
restrict-player-reloot: true
|
||||
reset-seed-on-fill: true
|
||||
max-refills: -1
|
||||
refresh-min: 12h
|
||||
refresh-max: 2d
|
||||
filter-nbt-data-from-spawn-eggs-and-related: false
|
||||
max-entity-collisions: 1
|
||||
disable-creeper-lingering-effect: false
|
||||
remove-corrupt-tile-entities: true
|
||||
use-chunk-inhabited-timer: true
|
||||
queue-light-updates: true
|
||||
duplicate-uuid-resolver: regenerate
|
||||
keep-spawn-loaded-range: 8
|
||||
auto-save-interval: -1
|
||||
container-update-tick-rate: 3
|
||||
grass-spread-tick-rate: 400
|
||||
bed-search-radius: 1
|
||||
nether-ceiling-void-damage: false
|
||||
non-player-arrow-despawn-rate: -1
|
||||
parrots-are-unaffected-by-player-movement: false
|
||||
disable-explosion-knockback: false
|
||||
allow-non-player-entities-on-scoreboards: false
|
||||
prevent-tnt-from-moving-in-water: false
|
||||
keep-spawn-loaded: false
|
||||
experience-merge-max-value: -1
|
||||
skip-entity-ticking-in-chunks-scheduled-for-unload: true
|
||||
armor-stands-do-collision-entity-lookups: true
|
||||
disable-thunder: false
|
||||
skeleton-horse-thunder-spawn-chance: 0.01
|
||||
disable-ice-and-snow: false
|
||||
fire-physics-event-for-redstone: false
|
||||
disable-teleportation-suffocation-check: true
|
||||
allow-leashing-undead-horse: false
|
||||
mob-spawner-tick-rate: 100
|
||||
squid-spawn-height:
|
||||
maximum: 0.0
|
||||
baby-zombie-movement-speed: 0.5
|
||||
spawner-nerfed-mobs-should-jump: false
|
||||
all-chunks-are-slime-chunks: false
|
||||
shield-blocking-delay: 5
|
||||
scan-for-legacy-ender-dragon: false
|
||||
generator-settings:
|
||||
canyon: true
|
||||
caves: true
|
||||
|
@ -136,24 +88,68 @@ world-settings:
|
|||
disable-extreme-hills-emeralds: false
|
||||
disable-extreme-hills-monster-eggs: false
|
||||
disable-mesa-additional-gold: false
|
||||
water-over-lava-flow-speed: 5
|
||||
optimize-explosions: true
|
||||
fast-drain:
|
||||
lava: false
|
||||
water: false
|
||||
lava-flow-speed:
|
||||
normal: 30
|
||||
nether: 10
|
||||
disable-explosion-knockback: false
|
||||
disable-thunder: false
|
||||
disable-ice-and-snow: false
|
||||
mob-spawner-tick-rate: 100
|
||||
container-update-tick-rate: 3
|
||||
all-chunks-are-slime-chunks: false
|
||||
portal-search-radius: 128
|
||||
disable-teleportation-suffocation-check: true
|
||||
allow-non-player-entities-on-scoreboards: false
|
||||
allow-leashing-undead-horse: false
|
||||
non-player-arrow-despawn-rate: -1
|
||||
skeleton-horse-thunder-spawn-chance: 0.01
|
||||
fire-physics-event-for-redstone: false
|
||||
use-chunk-inhabited-timer: true
|
||||
grass-spread-tick-rate: 400
|
||||
keep-spawn-loaded-range: 8
|
||||
use-vanilla-world-scoreboard-name-coloring: false
|
||||
frosted-ice:
|
||||
enabled: true
|
||||
delay:
|
||||
min: 20
|
||||
max: 40
|
||||
lootables:
|
||||
auto-replenish: false
|
||||
restrict-player-reloot: true
|
||||
reset-seed-on-fill: true
|
||||
max-refills: -1
|
||||
refresh-min: 12h
|
||||
refresh-max: 2d
|
||||
prevent-tnt-from-moving-in-water: false
|
||||
use-alternate-fallingblock-onGround-detection: false
|
||||
hopper:
|
||||
push-based: false
|
||||
cooldown-when-full: true
|
||||
disable-move-event: true
|
||||
push-based: false
|
||||
delay-chunk-unloads-by: 10s
|
||||
skip-entity-ticking-in-chunks-scheduled-for-unload: true
|
||||
elytra-hit-wall-damage: true
|
||||
use-alternate-fallingblock-onGround-detection: false
|
||||
auto-save-interval: -1
|
||||
max-auto-save-chunks-per-tick: 24
|
||||
save-queue-limit-for-auto-save: 50
|
||||
remove-corrupt-tile-entities: true
|
||||
filter-nbt-data-from-spawn-eggs-and-related: false
|
||||
enable-treasure-maps: true
|
||||
treasure-maps-return-already-discovered: false
|
||||
armor-stands-do-collision-entity-lookups: true
|
||||
max-entity-collisions: 1
|
||||
parrots-are-unaffected-by-player-movement: false
|
||||
disable-creeper-lingering-effect: false
|
||||
anti-xray:
|
||||
enabled: false
|
||||
engine-mode: 1
|
||||
chunk-edge-mode: 1
|
||||
max-chunk-section-index: 3
|
||||
update-radius: 2
|
||||
hidden-blocks:
|
||||
- gold_ore
|
||||
- iron_ore
|
||||
|
@ -171,3 +167,12 @@ world-settings:
|
|||
replacement-blocks:
|
||||
- stone
|
||||
- planks
|
||||
experience-merge-max-value: -1
|
||||
max-chunk-sends-per-tick: 81
|
||||
max-chunk-gens-per-tick: 10
|
||||
squid-spawn-height:
|
||||
maximum: 0.0
|
||||
bed-search-radius: 1
|
||||
duplicate-uuid-resolver: saferegen
|
||||
duplicate-uuid-saferegen-delete-range: 32
|
||||
armor-stands-tick: true
|
||||
|
|
Binary file not shown.
Binary file not shown.
BIN
plugins/ImageOnMap.jar
Normal file
BIN
plugins/ImageOnMap.jar
Normal file
Binary file not shown.
Binary file not shown.
BIN
plugins/ProtocolSupport.jar
Normal file
BIN
plugins/ProtocolSupport.jar
Normal file
Binary file not shown.
Binary file not shown.
2
restart.sh
Normal file
2
restart.sh
Normal file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
kill -9 $(pgrep java)
|
96
spigot.yml
96
spigot.yml
|
@ -11,19 +11,39 @@
|
|||
# Forums: http://www.spigotmc.org/
|
||||
|
||||
config-version: 11
|
||||
commands:
|
||||
log: true
|
||||
tab-complete: 0
|
||||
spam-exclusions:
|
||||
- /skill
|
||||
silent-commandblock-console: false
|
||||
replace-commands:
|
||||
- setblock
|
||||
- summon
|
||||
- testforblock
|
||||
- tellraw
|
||||
messages:
|
||||
whitelist: The server is temporarily down for maintenance. Please try again later!
|
||||
unknown-command: Unknown command. Type "/help" for help.
|
||||
server-full: The server is temporarily down for maintenance. Please try again later!
|
||||
outdated-client: Your client is outdated. Please join with Minecraft version {0}!
|
||||
outdated-server: The server is outdated. Please join with Minecraft version {0}!
|
||||
restart: The server is restarting. Please wait...
|
||||
settings:
|
||||
save-user-cache-on-stop-only: false
|
||||
sample-count: 12
|
||||
timeout-time: 60
|
||||
restart-on-crash: true
|
||||
restart-script: ./restart.sh
|
||||
bungeecord: false
|
||||
netty-threads: 8
|
||||
late-bind: true
|
||||
sample-count: 12
|
||||
player-shuffle: 0
|
||||
filter-creative-items: false
|
||||
user-cache-size: 1000
|
||||
save-user-cache-on-stop-only: false
|
||||
int-cache-limit: 1024
|
||||
moved-wrongly-threshold: 100.0
|
||||
moved-too-quickly-multiplier: 100.0
|
||||
timeout-time: 60
|
||||
restart-on-crash: false
|
||||
restart-script:
|
||||
netty-threads: 8
|
||||
attribute:
|
||||
maxHealth:
|
||||
max: 2048.0
|
||||
|
@ -32,28 +52,10 @@ settings:
|
|||
attackDamage:
|
||||
max: 2048.0
|
||||
debug: false
|
||||
filter-creative-items: false
|
||||
int-cache-limit: 1024
|
||||
item-dirty-ticks: 20
|
||||
messages:
|
||||
whitelist: The server is temporarily down for maintenance. Please try again later!
|
||||
unknown-command: Unknown command. Type "/help" for help.
|
||||
server-full: The server is temporarily down for maintenance. Please try again later!
|
||||
outdated-client: Your client is outdated. Please join with Minecraft version {0}!
|
||||
outdated-server: The server is outdated. Please join with Minecraft version {0}!
|
||||
restart: The server is restarting. Please wait...
|
||||
commands:
|
||||
spam-exclusions:
|
||||
- /skill
|
||||
silent-commandblock-console: true
|
||||
replace-commands:
|
||||
- setblock
|
||||
- summon
|
||||
- testforblock
|
||||
- tellraw
|
||||
tab-complete: 0
|
||||
send-namespaced: true
|
||||
log: false
|
||||
stats:
|
||||
disable-saving: false
|
||||
forced-stats: {}
|
||||
advancements:
|
||||
disable-saving: true
|
||||
disabled:
|
||||
|
@ -112,13 +114,9 @@ advancements:
|
|||
- minecraft:story/shiny_gear
|
||||
- minecraft:story/smelt_iron
|
||||
- minecraft:story/upgrade_tools
|
||||
stats:
|
||||
disable-saving: false
|
||||
forced-stats: {}
|
||||
world-settings:
|
||||
default:
|
||||
verbose: false
|
||||
mob-spawn-range: 3
|
||||
growth:
|
||||
cactus-modifier: 100
|
||||
cane-modifier: 100
|
||||
|
@ -130,6 +128,12 @@ world-settings:
|
|||
netherwart-modifier: 100
|
||||
vine-modifier: 100
|
||||
cocoa-modifier: 100
|
||||
merge-radius:
|
||||
item: 4.0
|
||||
exp: 6.0
|
||||
view-distance: 5
|
||||
mob-spawn-range: 3
|
||||
item-despawn-rate: 6000
|
||||
entity-activation-range:
|
||||
animals: 16
|
||||
monsters: 24
|
||||
|
@ -146,15 +150,16 @@ world-settings:
|
|||
hopper-check: 1
|
||||
hopper-amount: 1
|
||||
random-light-updates: false
|
||||
save-structure-info: false
|
||||
arrow-despawn-rate: 1200
|
||||
zombie-aggressive-towards-villager: false
|
||||
nerf-spawner-mobs: false
|
||||
enable-zombie-pigmen-portal-spawns: true
|
||||
dragon-death-sound-radius: 0
|
||||
wither-spawn-sound-radius: 0
|
||||
seed-village: 10387312
|
||||
seed-desert: 14357617
|
||||
seed-igloo: 14357618
|
||||
seed-jungle: 14357619
|
||||
seed-swamp: 14357620
|
||||
seed-feature: 14357617
|
||||
seed-monument: 10387313
|
||||
seed-shipwreck: 165745295
|
||||
seed-ocean: 14357621
|
||||
seed-slime: 987234911
|
||||
hunger:
|
||||
jump-walk-exhaustion: 0.05
|
||||
|
@ -165,25 +170,10 @@ world-settings:
|
|||
sprint-multiplier: 0.1
|
||||
other-multiplier: 0.0
|
||||
max-tnt-per-tick: 5
|
||||
hanging-tick-frequency: 100
|
||||
max-tick-time:
|
||||
tile: 20
|
||||
entity: 20
|
||||
squid-spawn-range:
|
||||
min: 45.0
|
||||
view-distance: 5
|
||||
enable-zombie-pigmen-portal-spawns: true
|
||||
merge-radius:
|
||||
item: 4.0
|
||||
exp: 6.0
|
||||
arrow-despawn-rate: 1200
|
||||
item-despawn-rate: 6000
|
||||
wither-spawn-sound-radius: 0
|
||||
hanging-tick-frequency: 100
|
||||
nerf-spawner-mobs: false
|
||||
zombie-aggressive-towards-villager: false
|
||||
max-entity-collisions: 1
|
||||
save-structure-info: false
|
||||
seed-feature: 14357617
|
||||
world:
|
||||
mob-spawn-range: 0
|
||||
max-tnt-per-tick: 0
|
||||
|
|
Loading…
Reference in a new issue