Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-19 21:10:10 +01:00
Use LinkedHashSet to make redstone update order consistent. Fixes BUKKIT-1850
Dieser Commit ist enthalten in:
Ursprung
ea4d3662be
Commit
78acee359e
@ -10,7 +10,7 @@ import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
|
||||
public class BlockRedstoneWire extends Block {
|
||||
|
||||
private boolean a = true;
|
||||
private Set b = new HashSet();
|
||||
private Set b = new java.util.LinkedHashSet(); // CraftBukkit - HashSet -> LinkedHashSet
|
||||
|
||||
public BlockRedstoneWire(int i, int j) {
|
||||
super(i, j, Material.ORIENTABLE);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren