So I have a script called ball.gd which just says
extends Palletable
var pos: Vector2i```
It works without errors if I run the game normally.
However, I have a @tool script that extends it that has even less code in it
```@tool
class_name BallEdit
extends Ball```
When I create a BallEdit node, I get an error saying ` ERROR: res://board/ball/ball.gd:4 - Bad address index.`
What is wrong with the pos variable and why does it only complain in tool mode?