-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial support for multiple agents on dedicated server (#79)
* access widener * initial support for multiple agents on server-side * initial support for connection to remote server * bump version * filter out debug logs from minecraft * start server in ci * add server-side mixins to server side * more logs * add fabric server launcher to fabric * eula * stop integrated server if connecting to remote * set seed for server world
- Loading branch information
Showing
16 changed files
with
184 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.6 | ||
0.1.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../config.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#By changing the setting below to TRUE you are indicating your agreement to our EULA (https://aka.ms/MinecraftEULA). | ||
#Thu Dec 29 16:39:29 GMT+04:00 2022 | ||
eula=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8006 -Dlog4j.configurationFile=`pwd`/config.xml -Xmx2G -jar mods/fabric-server-mc.1.21-loader.0.16.5-launcher.1.0.1.jar --nogui |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
#Minecraft server properties | ||
#Tue Oct 29 19:57:45 MSK 2024 | ||
accepts-transfers=false | ||
allow-flight=false | ||
allow-nether=true | ||
broadcast-console-to-ops=true | ||
broadcast-rcon-to-ops=true | ||
bug-report-link= | ||
difficulty=easy | ||
enable-command-block=false | ||
enable-jmx-monitoring=false | ||
enable-query=false | ||
enable-rcon=false | ||
enable-status=true | ||
enforce-secure-profile=false | ||
enforce-whitelist=false | ||
entity-broadcast-range-percentage=100 | ||
force-gamemode=false | ||
function-permission-level=2 | ||
gamemode=survival | ||
generate-structures=true | ||
generator-settings={"biome"\:"minecraft\:desert","layers"\:[{"block"\:"minecraft\:bedrock","height"\:1},{"block"\:"minecraft\:stone","height"\:3},{"block"\:"minecraft\:sandstone","height"\:116}],"structures"\:{"village"\:{}}} | ||
hardcore=false | ||
hide-online-players=false | ||
initial-disabled-packs= | ||
initial-enabled-packs=vanilla | ||
level-name=world | ||
level-seed=43839877843298 | ||
level-type=minecraft\:normal | ||
log-ips=true | ||
max-chained-neighbor-updates=1000000 | ||
max-players=20 | ||
max-tick-time=60000 | ||
max-world-size=29999984 | ||
motd=A Minecraft Server | ||
network-compression-threshold=256 | ||
online-mode=false | ||
op-permission-level=4 | ||
player-idle-timeout=0 | ||
prevent-proxy-connections=false | ||
pvp=true | ||
query.port=25565 | ||
rate-limit=0 | ||
rcon.password= | ||
rcon.port=25575 | ||
region-file-compression=deflate | ||
require-resource-pack=false | ||
resource-pack= | ||
resource-pack-id= | ||
resource-pack-prompt= | ||
resource-pack-sha1= | ||
server-ip= | ||
server-port=25565 | ||
simulation-distance=10 | ||
spawn-animals=true | ||
spawn-monsters=true | ||
spawn-npcs=true | ||
spawn-protection=16 | ||
sync-chunk-writes=true | ||
text-filtering-config= | ||
use-native-transport=true | ||
view-distance=10 | ||
white-list=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.