forked from kaboomserver/server
Latest changes
Former-commit-id: cfa94dae3c8404a343223d47b1dbd846f226580a
This commit is contained in:
parent
5927d6c61c
commit
13f6f15877
31 changed files with 53 additions and 2 deletions
BIN
.bin/java/bin/java
Executable file
BIN
.bin/java/bin/java
Executable file
Binary file not shown.
BIN
.bin/java/lib/jli/libjli.so
Normal file
BIN
.bin/java/lib/jli/libjli.so
Normal file
Binary file not shown.
34
.bin/java/lib/jvm.cfg
Normal file
34
.bin/java/lib/jvm.cfg
Normal file
|
@ -0,0 +1,34 @@
|
|||
# Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License version 2 only, as
|
||||
# published by the Free Software Foundation. Oracle designates this
|
||||
# particular file as subject to the "Classpath" exception as provided
|
||||
# by Oracle in the LICENSE file that accompanied this code.
|
||||
#
|
||||
# This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
# version 2 for more details (a copy is included in the LICENSE file that
|
||||
# accompanied this code).
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License version
|
||||
# 2 along with this work; if not, write to the Free Software Foundation,
|
||||
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
# or visit www.oracle.com if you need additional information or have any
|
||||
# questions.
|
||||
#
|
||||
# List of JVMs that can be used as an option to java, javac, etc.
|
||||
# Order is important -- first in this list is the default JVM.
|
||||
# NOTE that both this file and its format are UNSUPPORTED and
|
||||
# WILL GO AWAY in a future release.
|
||||
#
|
||||
# You may also select a JVM in an arbitrary location with the
|
||||
# "-XXaltjvm=<jvm_dir>" option, but that too is unsupported
|
||||
# and may not be available in a future release.
|
||||
#
|
||||
-server KNOWN
|
||||
-client IGNORE
|
BIN
.bin/java/lib/libawt.so
Normal file
BIN
.bin/java/lib/libawt.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/libawt_headless.so
Normal file
BIN
.bin/java/lib/libawt_headless.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/libextnet.so
Normal file
BIN
.bin/java/lib/libextnet.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/libjava.so
Normal file
BIN
.bin/java/lib/libjava.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/libjimage.so
Normal file
BIN
.bin/java/lib/libjimage.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/libmanagement.so
Normal file
BIN
.bin/java/lib/libmanagement.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/libmanagement_agent.so
Normal file
BIN
.bin/java/lib/libmanagement_agent.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/libmanagement_ext.so
Normal file
BIN
.bin/java/lib/libmanagement_ext.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/libnet.so
Normal file
BIN
.bin/java/lib/libnet.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/libnio.so
Normal file
BIN
.bin/java/lib/libnio.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/libverify.so
Normal file
BIN
.bin/java/lib/libverify.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/libzip.so
Normal file
BIN
.bin/java/lib/libzip.so
Normal file
Binary file not shown.
1
.bin/java/lib/modules.REMOVED.git-id
Normal file
1
.bin/java/lib/modules.REMOVED.git-id
Normal file
|
@ -0,0 +1 @@
|
|||
ac2e8e2f21c042b889fc47fe6a91c8e3d0d4be0f
|
BIN
.bin/java/lib/server/libjvm.so
Normal file
BIN
.bin/java/lib/server/libjvm.so
Normal file
Binary file not shown.
BIN
.bin/java/lib/tzdb.dat
Normal file
BIN
.bin/java/lib/tzdb.dat
Normal file
Binary file not shown.
BIN
.bin/tmux
Executable file
BIN
.bin/tmux
Executable file
Binary file not shown.
18
log4j2.xml
18
log4j2.xml
|
@ -1,3 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Configuration>
|
||||
<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="File"/>
|
||||
<AppenderRef ref="TerminalConsole"/>
|
||||
</Root>
|
||||
</Loggers>
|
||||
</Configuration>
|
||||
|
|
BIN
minecraft-server.jar
Normal file
BIN
minecraft-server.jar
Normal file
Binary file not shown.
BIN
plugins/DoBlockImage.jar
Normal file
BIN
plugins/DoBlockImage.jar
Normal file
Binary file not shown.
BIN
plugins/Essentials.jar
Normal file
BIN
plugins/Essentials.jar
Normal file
Binary file not shown.
Binary file not shown.
BIN
plugins/FastAsyncWorldEdit.jar
Normal file
BIN
plugins/FastAsyncWorldEdit.jar
Normal file
Binary file not shown.
|
@ -100,7 +100,7 @@ experimental:
|
|||
# - Set your server view distance to 1 (spigot.yml, server.properties)
|
||||
# - Based on tps and player movement
|
||||
# - Please provide feedback
|
||||
dynamic-chunk-rendering: false
|
||||
dynamic-chunk-rendering: -1
|
||||
# [SAFE] Allows brushes to be persistent
|
||||
persistent-brushes: false
|
||||
# [SAFE] Enable CUI without needing the mod installed (Requires ProtocolLib)
|
||||
|
|
BIN
plugins/ImageOnMap.jar
Normal file
BIN
plugins/ImageOnMap.jar
Normal file
Binary file not shown.
BIN
plugins/LibsDisguises.jar
Normal file
BIN
plugins/LibsDisguises.jar
Normal file
Binary file not shown.
BIN
plugins/MySkin.jar
Normal file
BIN
plugins/MySkin.jar
Normal file
Binary file not shown.
BIN
plugins/ProtocolLib.jar
Normal file
BIN
plugins/ProtocolLib.jar
Normal file
Binary file not shown.
BIN
plugins/WorldEdit.jar
Normal file
BIN
plugins/WorldEdit.jar
Normal file
Binary file not shown.
Loading…
Reference in a new issue