SteamWar/BauSystem2.0
Archiviert
12
0

Fix ClipboardListener

Dieser Commit ist enthalten in:
yoyosource 2024-07-17 14:03:55 +02:00
Ursprung 30ddf671ae
Commit 2214b7dc3d

Datei anzeigen

@ -36,21 +36,26 @@ public class ClipboardListener implements Listener {
@EventHandler @EventHandler
public void onLogin(PlayerJoinEvent e) { public void onLogin(PlayerJoinEvent e) {
if(!Permission.SUPERVISOR.hasPermission(e.getPlayer())) return; if (!Permission.SUPERVISOR.hasPermission(e.getPlayer())) return;
SchematicNode schematic;
try { try {
SchematicNode schematic = SchematicNode.getSchematicNode(SteamwarUser.get(e.getPlayer().getUniqueId()).getId(), CLIPBOARD_SCHEMNAME, (Integer) null); schematic = SchematicNode.getSchematicNode(SteamwarUser.get(e.getPlayer().getUniqueId()).getId(), CLIPBOARD_SCHEMNAME, (Integer) null);
if (schematic != null) { } catch (Exception ex) {
new SchematicData(schematic).loadToPlayer(e.getPlayer()); return;
} }
if (schematic == null) return;
try {
new SchematicData(schematic).loadToPlayer(e.getPlayer());
} catch (Exception ex) { } catch (Exception ex) {
// ignore cause players do all kind of stuff with schematics.... like massively oversized schems // ignore cause players do all kind of stuff with schematics.... like massively oversized schems
schematic.delete();
} }
} }
@EventHandler @EventHandler
public void onLogout(PlayerQuitEvent e) { public void onLogout(PlayerQuitEvent e) {
if(!Permission.SUPERVISOR.hasPermission(e.getPlayer())) return; if (!Permission.SUPERVISOR.hasPermission(e.getPlayer())) return;
SchematicNode schematic = SchematicNode.getSchematicNode(SteamwarUser.get(e.getPlayer().getUniqueId()).getId(), CLIPBOARD_SCHEMNAME, (Integer) null); SchematicNode schematic = SchematicNode.getSchematicNode(SteamwarUser.get(e.getPlayer().getUniqueId()).getId(), CLIPBOARD_SCHEMNAME, (Integer) null);
boolean newSchem = false; boolean newSchem = false;