dnd-tools
dnd-tools copied to clipboard
use comparator operator, not 'is' operator
Got a warning, tested this out. Should be using ==
, not is
. The is
checks if two instances are the same instance. The ==
checks if two values are the same, which is usually what you want.