Update bundled LibAC-flutter

This commit is contained in:
zontreck 2025-03-15 02:28:29 -07:00
parent 25f033dab4
commit b56e9ca2db
5 changed files with 46 additions and 50 deletions

View file

@ -15,8 +15,9 @@ class BugVaultServer {
static Future<void> InstantiateSettings(CompoundTag ct) async {
g_iPortNumber = ct.get("port")?.asInt() ?? 8372;
if (ct.containsKey("anonymous"))
if (ct.containsKey("anonymous")) {
g_bAllowAnonymousLogin = NbtUtils.readBoolean(ct, "anonymous");
}
await _loadUserDB();
}