Fix XRTools library bug that didn't nil check in pickup

This commit is contained in:
JonShard
2026-07-28 19:16:35 +02:00
parent 29326f4b78
commit 8b6f444d55
2 changed files with 8 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
function_pickup.gd:
Add nil check in func _pick_up_object(target: Node3D)
440: if target and target.has_method("pick_up"):
target.pick_up(self)