SteamWar/BauSystem
Archiviert
13
0

Refactor for "better" error handling

Dieser Commit ist enthalten in:
Lixfel 2020-09-06 21:05:39 +02:00
Ursprung 607ff10250
Commit f5c34db39e

Datei anzeigen

@ -34,13 +34,13 @@ public class ClipboardListener implements Listener {
@EventHandler
public void onLogin(PlayerJoinEvent e){
try {
Schematic schematic = Schematic.getSchemFromDB(CLIPBOARD_SCHEMNAME, e.getPlayer().getUniqueId());
if(schematic != null){
try {
schematic.loadToPlayer(e.getPlayer());
} catch (Exception ex) {
//ignore
}
} catch (Exception ex) {
//ignore cause players do all kind of stuff with schematics.... like massively oversized schems
}
}