mirror of
https://github.com/DiscordSRV/Ascension.git
synced 2025-02-06 00:01:46 +01:00
A couple fixes
This commit is contained in:
parent
5a028c8d9f
commit
0906ef6c62
@ -69,7 +69,7 @@ public abstract class AbstractPlayerProvider<T extends IPlayer, DT extends Disco
|
||||
this.allPlayers.add(player);
|
||||
discordSRV.scheduler().run(() -> discordSRV.eventBus().publish(new PlayerConnectedEvent(player, initial)));
|
||||
|
||||
if (UUIDUtil.isOffline(uuid) /* Offline */) {
|
||||
if (UUIDUtil.isOffline(uuid)) {
|
||||
anyOffline.set(true);
|
||||
}
|
||||
}
|
||||
|
@ -236,7 +236,7 @@ public class DebugReport {
|
||||
values.put("storage.backend", config.storage.backend);
|
||||
values.put("storage.sql-table-prefix", config.storage.sqlTablePrefix);
|
||||
values.put("storage.remote.pool-options.keepalive-time", poolConfig.keepaliveTime);
|
||||
values.put("storage.remote.pool-options.maxiumum-lifetime", poolConfig.maximumLifetime);
|
||||
values.put("storage.remote.pool-options.maximum-lifetime", poolConfig.maximumLifetime);
|
||||
values.put("storage.remote.pool-options.maximum-pool-size", poolConfig.maximumPoolSize);
|
||||
values.put("storage.remote.pool-options.minimum-pool-size", poolConfig.minimumPoolSize);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user