SteamWar/BauSystem2.0
Archiviert
12
0

Fix LoaderMovement
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2023-05-01 18:10:32 +02:00
Ursprung b1dcd6d57b
Commit 40ba9b838e

Datei anzeigen

@ -84,7 +84,7 @@ public class LoaderMovement extends LoaderInteractionElement<LoaderMovement.Move
@Override @Override
public void execute(Runnable nextAction) { public void execute(Runnable nextAction) {
if (location.getBlock().getType() != material) { if (!(material == Material.STRING && location.getBlock().getType() == Material.TRIPWIRE) && location.getBlock().getType() != material) {
nextAction.run(); nextAction.run();
return; return;
} }