Hotfix BackupCommand.backupGui
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-10-02 21:14:26 +02:00
parent ea07766460
commit 566a7deee3

View File

@ -110,7 +110,7 @@ public class BackupCommand extends SWCommand {
} }
SWListInv<RegionBackups.Backup> swListInv = new SWListInv<>(p, BauSystem.MESSAGE.parse("BACKUP_INV_NAME", p), swListEntries, (clickType, s) -> { SWListInv<RegionBackups.Backup> swListInv = new SWListInv<>(p, BauSystem.MESSAGE.parse("BACKUP_INV_NAME", p), swListEntries, (clickType, s) -> {
p.getOpenInventory().close(); p.getOpenInventory().close();
p.performCommand("backup load " + s); backupLoad(p, s);
}); });
swListInv.open(); swListInv.open();
} }