SwitchCraftCC / Plethora-Fabric

A peripheral provider for ComputerCraft, ported to Fabric
MIT License
16 stars 13 forks source link

NI death getMetaOwner inconsistencies with 1.12.2 behavior #14

Closed Kan18 closed 1 year ago

Kan18 commented 1 year ago

On Plethora 1.19, getMetaOwner seems to freeze/hang whenever it is called on an NI during the player's death. Plethora 1.12.2 would give a "The entity is no longer there" error. Test program:

while true do
  print(os.epoch("utc"))
  print(peripheral.call("back", "getMetaOwner"))
  sleep(0.1)
end

1.19 behavior:

https://user-images.githubusercontent.com/24967425/213943419-418f145a-49bd-4457-ba55-641c30f35945.mp4

1.12.2 behavior (similar setup):