Skip to content

Commit

Permalink
fix(mapper): 🐛 remove duplicate terrain keys
Browse files Browse the repository at this point in the history
  • Loading branch information
iLPdev committed May 28, 2023
1 parent a7c5f44 commit 656ee7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prs-mapper.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ local terrain_types = {
["Armor Shop"] = {id = 34, r = 255, g = 255, b = 255},
["Alchemist"] = {id = 35, r = 255, g = 0, b = 255},
["Farming Store"] = {id = 36, r = 0, g = 128, b = 0},
["Farmland"] = {id = 37, r = 128, g = 128, b = 0},
-- ["Farmland"] = {id = 37, r = 128, g = 128, b = 0}, -- duplicate key id reserved for later use
["Abandoned Mine"] = {id = 38, r = 255, g = 0, b = 0},
["Shrine"] = {id = 39, r = 255, g = 255, b = 255},
["Grocery Store"] = {id = 40, r = 128, g = 128, b = 0},
Expand Down Expand Up @@ -87,7 +87,7 @@ local terrain_types = {
["Canyon"] = {id = 76, r = 128, g = 0, b = 128},
["Oasis"] = {id = 77, r = 0, g = 155, b = 0},
["Summit"] = {id = 78, r = 255, g = 255, b = 255},
["Ravine"] = {id = 79, r = 128, g = 128, b = 128},
-- ["Ravine"] = {id = 79, r = 128, g = 128, b = 128}, -- duplicate key id reserved for later use
["Mountains"] = {id = 80, r = 0, g = 255, b = 255},
["Foothills"] = {id = 81, r = 255, g = 255, b = 0},
["Valley"] = {id = 82, r = 0, g = 128, b = 0},
Expand Down

0 comments on commit 656ee7b

Please sign in to comment.