SteamWar/SpigotCore
Archiviert
13
0

No Gravity #223

Zusammengeführt
Lixfel hat 12 Commits von NoGravityREntity nach master 2023-01-17 16:56:41 +01:00 zusammengeführt
2 geänderte Dateien mit 13 neuen und 1 gelöschten Zeilen
Nur Änderungen aus Commit 537509a4e4 werden angezeigt - Alle Commits anzeigen

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));
}
}