SteamWar/BauSystem
Archiviert
13
0

Fixing Detonator #158

Manuell gemergt
YoyoNow hat 9 Commits von fixing_some_detonator nach master 2021-01-09 20:54:38 +01:00 zusammengeführt
Nur Änderungen aus Commit 9150a3a4c7 werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -92,12 +92,10 @@ public class Detonator implements Listener {
} else { } else {
VersionedRunnable.call(new VersionedRunnable(() -> { VersionedRunnable.call(new VersionedRunnable(() -> {
AutoLoader_12.setRedstone(activation.location, true); AutoLoader_12.setRedstone(activation.location, true);
Bukkit.getScheduler().runTaskLater(BauSystem.getPlugin(), () -> Bukkit.getScheduler().runTaskLater(BauSystem.getPlugin(), () -> AutoLoader_12.setRedstone(activation.location, false), activation.activation);
AutoLoader_12.setRedstone(activation.location, false), activation.activation);
}, 12), new VersionedRunnable(() -> { }, 12), new VersionedRunnable(() -> {
Veraltet
Review

Lambda bitte in eine Zeile

Lambda bitte in eine Zeile
AutoLoader_15.setRedstone(activation.location, true); AutoLoader_15.setRedstone(activation.location, true);
Bukkit.getScheduler().runTaskLater(BauSystem.getPlugin(), () -> Bukkit.getScheduler().runTaskLater(BauSystem.getPlugin(), () -> AutoLoader_15.setRedstone(activation.location, false), activation.activation);
AutoLoader_15.setRedstone(activation.location, false), activation.activation);
}, 15)); }, 15));
} }
Veraltet
Review

Lambda bitte in eine Zeile

Lambda bitte in eine Zeile
} }
@ -115,10 +113,8 @@ public class Detonator implements Listener {
switch (event.getAction()) { switch (event.getAction()) {
case LEFT_CLICK_BLOCK: case LEFT_CLICK_BLOCK:
Detoloader detoloader = VersionedCallable.call( Detoloader detoloader = VersionedCallable.call(
new VersionedCallable<>(() -> new VersionedCallable<>(() -> AutoLoader_12.onPlayerInteractLoader(event), 12),
AutoLoader_12.onPlayerInteractLoader(event), 12), new VersionedCallable<>(() -> AutoLoader_15.onPlayerInteractLoader(event), 15));
new VersionedCallable<>(() ->
AutoLoader_15.onPlayerInteractLoader(event), 15));
Veraltet
Review

Auch hier Lambdas in die gleiche Zeile

Auch hier Lambdas in die gleiche Zeile
if (detoloader == null) { if (detoloader == null) {
return; return;