File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,12 @@ config:
71
71
readTimeout : 30000
72
72
# Whether to reconnect the player when disconnected from a server.
73
73
failoverOnUnexpectedServerDisconnect : true
74
+ # Whether to kick existing connected player when an online-mode player with the same name joins.
75
+ # This is useful for scenarios where the real Minecraft account takes precedence over the cracked one.
76
+ # Note that enabling this would allow real Minecraft account players to bully cracked players by
77
+ # taking the cracked player's name and block them from joining the server, while the online player is connected.
78
+ # Default: false
79
+ onlineModeKickExistingPlayers : false
74
80
# Enabled extra debug logging (only for debugging purposes).
75
81
debug : false
76
82
# This allows you to customize how player information such as IPs and UUIDs are forwarded to your server.
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ type Config struct { // TODO use https://github.com/projectdiscovery/yamldoc-go
71
71
Bind string // The address to listen for connections.
72
72
73
73
OnlineMode bool
74
- OnlineModeKickExistingPlayers bool
74
+ OnlineModeKickExistingPlayers bool // Kicks existing players when a premium player with the same name joins.
75
75
76
76
Forwarding Forwarding
77
77
Status Status
You can’t perform that action at this time.
0 commit comments