hi i have the body_entered signal to the emitting node itself , here's the code
func _on_Area2D_kts_body_entered(body):
print(body.get_parent().get_parent().get_name())
if body.get_parent().get_parent().get_name() != "map" :
print("boi")
even though the grandparent node name is map , it still execute the condition block
any help would be great
