fix BeeSwarm bug where the wrong target beehive was chosen
This commit is contained in:
@@ -5,4 +5,6 @@ namespace OrekiWoofsBees.Common;
|
||||
public readonly record struct StructVec3i(int X, int Y, int Z)
|
||||
{
|
||||
public static StructVec3i FromBlockPos(BlockPos pos) => new(pos.X, pos.Y, pos.Z);
|
||||
|
||||
public BlockPos ToBlockPos() => new(X, Y, Z);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user