Private
Public Access
1
0

fix BeeSwarm bug where the wrong target beehive was chosen

This commit is contained in:
2026-05-24 08:05:33 +02:00
parent 7126ae4f88
commit 1776a26374
3 changed files with 24 additions and 10 deletions

View File

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