Skip to content

Commit c409843

Browse files
committed
Fix mispelling in label
1 parent 8b67f0c commit c409843

File tree

5 files changed

+140
-102
lines changed

5 files changed

+140
-102
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
2727
org.opencontainers.image.created=$BUILD_DATE \
2828
org.opencontainers.image.title="CentOS v7 with Spigot" \
2929
org.opencontainers.image.version=$SPIGOT_VERSION \
30-
org.opencontainers.iamge.url="https://github.com/kriation/docker-spigot"
30+
org.opencontainers.image.url="https://github.com/kriation/docker-spigot"
3131
ENV SPIGOT_VERSION=${SPIGOT_VERSION:-latest} \
3232
MC_SERVER_MEM=${MC_SERVER_MEM:-1024M} \
3333
MC_SERVER_PORT=${MC_SERVER_PORT:-25565} \

config/bukkit.yml

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# This is the main configuration file for Bukkit.
22
# As you can see, there's actually not that much to configure without any plugins.
33
# For a reference for any variable inside this file, check out the Bukkit Wiki at
4-
# http://wiki.bukkit.org/Bukkit.yml
4+
# https://www.spigotmc.org/go/bukkit-yml
55
#
66
# If you need help on this file, feel free to join us on irc or leave a message
77
# on the forums asking for advice.
88
#
99
# IRC: #spigot @ irc.spi.gt
10-
# (If this means nothing to you, just go to http://www.spigotmc.org/pages/irc/ )
11-
# Forums: http://www.spigotmc.org/
12-
# Bug tracker: http://www.spigotmc.org/go/bugs
10+
# (If this means nothing to you, just go to https://www.spigotmc.org/go/irc )
11+
# Forums: https://www.spigotmc.org/
12+
# Bug tracker: https://www.spigotmc.org/go/bugs
1313

1414

1515
settings:
@@ -22,16 +22,20 @@ settings:
2222
query-plugins: true
2323
deprecated-verbose: default
2424
shutdown-message: Server closed
25+
minimum-api: none
2526
spawn-limits:
2627
monsters: 70
27-
animals: 15
28-
water-animals: 5
28+
animals: 10
29+
water-animals: 15
30+
water-ambient: 20
2931
ambient: 15
3032
chunk-gc:
3133
period-in-ticks: 600
32-
load-threshold: 0
3334
ticks-per:
3435
animal-spawns: 400
3536
monster-spawns: 1
37+
water-spawns: 1
38+
water-ambient-spawns: 1
39+
ambient-spawns: 1
3640
autosave: 6000
3741
aliases: now-in-commands.yml

config/commands.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# This is the commands configuration file for Bukkit.
22
# For documentation on how to make use of this file, check out the Bukkit Wiki at
3-
# http://wiki.bukkit.org/Commands.yml
3+
# https://www.spigotmc.org/go/commands-yml
44
#
55
# If you need help on this file, feel free to join us on irc or leave a message
66
# on the forums asking for advice.
77
#
88
# IRC: #spigot @ irc.spi.gt
9-
# (If this means nothing to you, just go to http://www.spigotmc.org/pages/irc/ )
10-
# Forums: http://www.spigotmc.org/
11-
# Bug tracker: http://www.spigotmc.org/go/bugs
9+
# (If this means nothing to you, just go to https://www.spigotmc.org/go/irc )
10+
# Forums: https://www.spigotmc.org/
11+
# Bug tracker: https://www.spigotmc.org/go/bugs
1212

1313
command-block-overrides: []
14-
unrestricted-advancements: false
14+
ignore-vanilla-permissions: false
1515
aliases:
1616
icanhasbukkit:
1717
- version $1-

config/server.properties

+41-29
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,51 @@
1-
allow-flight=false
2-
allow-nether=true
3-
difficulty=1
4-
enable-command-block=false
5-
force-gamemode=false
6-
gamemode=0
7-
generate-structures=true
1+
spawn-protection=16
2+
max-tick-time=60000
3+
query.port=25565
84
generator-settings=
5+
sync-chunk-writes=true
6+
force-gamemode=false
7+
allow-nether=true
8+
enforce-whitelist=false
9+
gamemode=survival
10+
broadcast-console-to-ops=true
11+
enable-query=false
12+
player-idle-timeout=0
13+
text-filtering-config=
14+
difficulty=easy
15+
broadcast-rcon-to-ops=true
16+
spawn-monsters=true
17+
op-permission-level=4
18+
pvp=true
19+
entity-broadcast-range-percentage=100
20+
snooper-enabled=true
21+
level-type=default
22+
enable-status=true
923
hardcore=false
10-
level-name=world
11-
level-seed=
12-
level-type=DEFAULT
13-
max-build-height=256
24+
enable-command-block=false
25+
network-compression-threshold=256
1426
max-players=20
1527
max-world-size=29999984
16-
motd=A Minecraft Server
17-
network-compression-threshold=256
18-
online-mode=true
19-
op-permission-level=4
20-
player-idle-timeout=0
21-
prevent-proxy-connections=false
22-
pvp=true
2328
resource-pack-sha1=
24-
resource-pack=
29+
function-permission-level=2
30+
rcon.port=25575
31+
server-port=25565
32+
debug=false
2533
server-ip=
26-
snooper-enabled=true
27-
spawn-animals=true
28-
spawn-monsters=true
2934
spawn-npcs=true
30-
use-native-transport=true
35+
allow-flight=false
36+
level-name=world
3137
view-distance=10
38+
resource-pack=
39+
spawn-animals=true
3240
white-list=false
33-
# Managed by container build process
34-
enable-query=false
35-
enable-rcon=false
36-
query.port=25565
3741
rcon.password=
38-
rcon.port=25575
39-
server-port=25565
42+
generate-structures=true
43+
online-mode=true
44+
max-build-height=256
45+
level-seed=
46+
prevent-proxy-connections=false
47+
use-native-transport=true
48+
enable-jmx-monitoring=false
49+
motd=A Minecraft Server
50+
rate-limit=0
51+
enable-rcon=false

config/spigot.yml

+82-60
Original file line numberDiff line numberDiff line change
@@ -10,92 +10,118 @@
1010
# IRC: #spigot @ irc.spi.gt ( http://www.spigotmc.org/pages/irc/ )
1111
# Forums: http://www.spigotmc.org/
1212

13-
config-version: 11
13+
config-version: 12
14+
messages:
15+
whitelist: You are not whitelisted on this server!
16+
unknown-command: Unknown command. Type "/help" for help.
17+
server-full: The server is full!
18+
outdated-client: Outdated client! Please use {0}
19+
outdated-server: Outdated server! I'm still on {0}
20+
restart: Server is restarting
21+
stats:
22+
disable-saving: false
23+
forced-stats: {}
24+
commands:
25+
log: true
26+
tab-complete: 0
27+
send-namespaced: true
28+
spam-exclusions:
29+
- /skill
30+
silent-commandblock-console: false
31+
replace-commands:
32+
- setblock
33+
- summon
34+
- testforblock
35+
- tellraw
1436
settings:
15-
debug: false
37+
bungeecord: false
38+
sample-count: 12
39+
player-shuffle: 0
40+
user-cache-size: 1000
1641
save-user-cache-on-stop-only: false
42+
moved-wrongly-threshold: 0.0625
43+
moved-too-quickly-multiplier: 10.0
44+
log-villager-deaths: true
1745
timeout-time: 60
1846
restart-on-crash: true
1947
restart-script: ./start.sh
2048
netty-threads: 4
49+
debug: false
2150
attribute:
2251
maxHealth:
2352
max: 2048.0
2453
movementSpeed:
2554
max: 2048.0
2655
attackDamage:
2756
max: 2048.0
28-
bungeecord: false
29-
late-bind: false
30-
sample-count: 12
31-
player-shuffle: 0
32-
filter-creative-items: true
33-
user-cache-size: 1000
34-
int-cache-limit: 1024
35-
moved-wrongly-threshold: 0.0625
36-
moved-too-quickly-multiplier: 10.0
37-
item-dirty-ticks: 20
38-
commands:
39-
tab-complete: 0
40-
log: true
41-
spam-exclusions:
42-
- /skill
43-
silent-commandblock-console: false
44-
replace-commands:
45-
- setblock
46-
- summon
47-
- testforblock
48-
- tellraw
49-
messages:
50-
whitelist: You are not whitelisted on this server!
51-
unknown-command: Unknown command. Type "/help" for help.
52-
server-full: The server is full!
53-
outdated-client: Outdated client! Please use {0}
54-
outdated-server: Outdated server! I'm still on {0}
55-
restart: Server is restarting
56-
stats:
57-
disable-saving: false
58-
forced-stats: {}
5957
advancements:
6058
disable-saving: false
6159
disabled:
6260
- minecraft:story/disabled
61+
players:
62+
disable-saving: false
6363
world-settings:
6464
default:
6565
verbose: true
66+
mob-spawn-range: 6
67+
hopper-amount: 1
68+
dragon-death-sound-radius: 0
69+
seed-village: 10387312
70+
seed-desert: 14357617
71+
seed-igloo: 14357618
72+
seed-jungle: 14357619
73+
seed-swamp: 14357620
74+
seed-monument: 10387313
75+
seed-shipwreck: 165745295
76+
seed-ocean: 14357621
77+
seed-outpost: 165745296
78+
seed-endcity: 10387313
79+
seed-slime: 987234911
80+
seed-bastion: 30084232
81+
seed-fortress: 30084232
82+
seed-mansion: 10387319
83+
seed-fossil: 14357921
84+
seed-portal: 34222645
85+
max-tnt-per-tick: 100
86+
enable-zombie-pigmen-portal-spawns: true
87+
item-despawn-rate: 6000
88+
view-distance: default
89+
wither-spawn-sound-radius: 0
90+
hanging-tick-frequency: 100
91+
arrow-despawn-rate: 1200
92+
trident-despawn-rate: 1200
93+
zombie-aggressive-towards-villager: true
94+
nerf-spawner-mobs: false
95+
end-portal-sound-radius: 0
96+
merge-radius:
97+
exp: 3.0
98+
item: 2.5
6699
growth:
67100
cactus-modifier: 100
68101
cane-modifier: 100
69102
melon-modifier: 100
70103
mushroom-modifier: 100
71104
pumpkin-modifier: 100
72105
sapling-modifier: 100
106+
beetroot-modifier: 100
107+
carrot-modifier: 100
108+
potato-modifier: 100
73109
wheat-modifier: 100
74110
netherwart-modifier: 100
75111
vine-modifier: 100
76112
cocoa-modifier: 100
113+
bamboo-modifier: 100
114+
sweetberry-modifier: 100
115+
kelp-modifier: 100
77116
entity-activation-range:
78117
animals: 32
79118
monsters: 32
119+
raiders: 48
80120
misc: 16
81-
entity-tracking-range:
82-
players: 48
83-
animals: 48
84-
monsters: 48
85-
misc: 32
86-
other: 64
87-
mob-spawn-range: 4
121+
tick-inactive-villagers: true
88122
ticks-per:
89123
hopper-transfer: 8
90124
hopper-check: 1
91-
hopper-amount: 1
92-
random-light-updates: false
93-
save-structure-info: true
94-
dragon-death-sound-radius: 0
95-
seed-village: 10387312
96-
seed-feature: 14357617
97-
seed-monument: 10387313
98-
seed-slime: 987234911
99125
hunger:
100126
jump-walk-exhaustion: 0.05
101127
jump-sprint-exhaustion: 0.2
@@ -104,18 +130,14 @@ world-settings:
104130
swim-multiplier: 0.01
105131
sprint-multiplier: 0.1
106132
other-multiplier: 0.0
107-
max-tnt-per-tick: 100
108133
max-tick-time:
109134
tile: 50
110135
entity: 50
111-
item-despawn-rate: 6000
112-
merge-radius:
113-
item: 2.5
114-
exp: 3.0
115-
arrow-despawn-rate: 1200
116-
enable-zombie-pigmen-portal-spawns: true
117-
wither-spawn-sound-radius: 0
118-
view-distance: 10
119-
hanging-tick-frequency: 100
120-
zombie-aggressive-towards-villager: true
121-
nerf-spawner-mobs: false
136+
squid-spawn-range:
137+
min: 45.0
138+
entity-tracking-range:
139+
players: 48
140+
animals: 48
141+
monsters: 48
142+
misc: 32
143+
other: 64

0 commit comments

Comments
 (0)