Skip to content

Commit

Permalink
Fix mapgen "notall" filter not working
Browse files Browse the repository at this point in the history
  • Loading branch information
CelticMinstrel committed Feb 23, 2021
1 parent 1a14a66 commit 218bbb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripting/lua_terrainfilter.cpp
Expand Up @@ -600,7 +600,7 @@ enum filter_keys { F_AND, F_OR, F_NAND, F_NOR, F_X, F_Y, F_FIND_IN, F_ADJACENT,
static const std::unordered_map<std::string, filter_keys> keys {
{ "all", F_AND },
{ "any", F_OR },
{ "not_all", F_NAND },
{ "notall", F_NAND },
{ "none", F_NOR },
{ "x", F_X },
{ "y", F_Y },
Expand Down

0 comments on commit 218bbb2

Please sign in to comment.