fix an insanely stupid world transfer relation bug

pull/5/head
cosmonaut 2023-10-06 12:27:11 -07:00
parent a05eb94b7d
commit d1983bf168
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ namespace MoonTools.ECS
public override unsafe void* Get(int relationStorageIndex)
{
fixed (void* p = &relations[relationStorageIndex])
fixed (void* p = &relationDatas[relationStorageIndex])
{
return p;
}