Skip to content

Commit

Permalink
Add isNotEqualTo keyword (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
3Mydlo3 authored Feb 15, 2024
1 parent fafae54 commit 4424862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/sqf_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
open = codecs.open

def validKeyWordAfterCode(content, index):
keyWords = ["for", "do", "count", "each", "forEach", "else", "and", "not", "isEqualTo", "in", "call", "spawn", "execVM", "catch", "param", "select", "apply"];
keyWords = ["for", "do", "count", "each", "forEach", "else", "and", "not", "isEqualTo", "isNotEqualTo", "in", "call", "spawn", "execVM", "catch", "param", "select", "apply"];
for word in keyWords:
try:
subWord = content.index(word, index, index+len(word))
Expand Down

0 comments on commit 4424862

Please sign in to comment.