savagezen / dnd-tools

ARCHIVE - MOVED TO GITLAB | Interactive CLI tools for Dungeons and Dragons 5e
https://gitlab.com/savagezen/dnd-tools
GNU Affero General Public License v3.0
164 stars 34 forks source link

use comparator operator, not 'is' operator #20

Open MikeSE314 opened 3 years ago

MikeSE314 commented 3 years ago

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.