Skip to content

Commit

Permalink
Exclude world tags are case incensitive now.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bozar committed Mar 25, 2021
1 parent 1999e7e commit 4c04dc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scene/main/GameSetting.gd
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ func _set_exclude_world(setting) -> Array:

exclude = setting[EXCLUDE_WORLD] as Array
for i in range(exclude.size()):
exclude[i] = exclude[i] as String
exclude[i] = (exclude[i] as String).to_lower()
return exclude


Expand Down

0 comments on commit 4c04dc7

Please sign in to comment.