12
0

Implement RFallingBlockEntity
Einige Prüfungen sind fehlgeschlagen
SteamWarCI Build failed

Dieser Commit ist enthalten in:
zOnlyKroks 2023-01-17 16:34:04 +01:00
Ursprung 8cff1db70b
Commit 537509a4e4
2 geänderte Dateien mit 13 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -396,7 +396,6 @@ public class REntity {
break;
}
Reflection.FieldAccessor<Integer> additionalData = Reflection.getField(spawnPacket, int.class, index);
BountifulWrapper.PositionSetter position = BountifulWrapper.impl.getPositionSetter(spawnPacket, posOffset);

Datei anzeigen

@ -0,0 +1,13 @@
package de.steamwar.entity;
import de.steamwar.techhider.BlockIds;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
public class RFallingBlockEntity extends REntity{
public RFallingBlockEntity(REntityServer server, EntityType entityType, Location location, Material material) {
super(server, entityType, location, BlockIds.impl.materialToId(material));
}
}