We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 314e4dd commit 2336d21Copy full SHA for 2336d21
util/master/master.cgi
@@ -235,7 +235,10 @@ sub request (;$) {
235
$param->{first} ||= $old->{first} || $old->{time} || $param->{time};
236
$param->{clients_top} = $old->{clients_top} if $old->{clients_top} > $param->{clients};
237
$param->{clients_top} ||= $param->{clients} || 0;
238
- $param->{mods} ||= $old->{mods} if $old->{mods} and !($param->{action} ~~ 'start');
+ # params reported once on start, must be same as src/serverlist.cpp:~221 if(server["action"] == "start") { ...
239
+ for (qw(dedicated rollback liquid_finite mapgen mods)) {
240
+ $param->{$_} ||= $old->{$_} if $old->{$_} and !($param->{action} ~~ 'start');
241
+ }
242
delete $param->{action};
243
$listk->{$param->{key}} = $param;
244
#printlog Dumper $param;
0 commit comments