Skip to content

Commit

Permalink
Fix typo: mosterclip
Browse files Browse the repository at this point in the history
  • Loading branch information
kduske committed Apr 11, 2020
1 parent 588b6ab commit d7093bb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/resources/games/DigitalPaintball2/GameConfig.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
"description": "Player cannot pass through the brush (other things can)"
}, // 1 << 16
{
"name": "mosterclip",
"name": "monsterclip",
"description": "Monster cannot pass through the brush (player and other things can)"
}, // 1 << 17
{
Expand Down
2 changes: 1 addition & 1 deletion app/resources/games/Heretic2/GameConfig.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
"description": "Player cannot pass through the brush (other things can)"
}, // 1 << 16
{
"name": "mosterclip",
"name": "monsterclip",
"description": "Monster cannot pass through the brush (player and other things can)"
}, // 1 << 17
{
Expand Down
2 changes: 1 addition & 1 deletion app/resources/games/Kingpin/GameConfig.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
"description": "Player cannot pass through the brush (other things can)"
}, // 65536
{
"name": "mosterclip",
"name": "monsterclip",
"description": "Monster cannot pass through the brush (player and other things can)"
}, // 131072
{
Expand Down
2 changes: 1 addition & 1 deletion app/resources/games/Quake2/GameConfig.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
"description": "Player cannot pass through the brush (other things can)"
}, // 1 << 16
{
"name": "mosterclip",
"name": "monsterclip",
"description": "Monster cannot pass through the brush (player and other things can)"
}, // 1 << 17
{
Expand Down
2 changes: 1 addition & 1 deletion app/resources/games/Quake3/GameConfig.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
"description": "Player cannot pass through the brush (other things can)"
}, // 65536
{
"name": "mosterclip",
"name": "monsterclip",
"description": "Monster cannot pass through the brush (player and other things can)"
}, // 131072
{
Expand Down
8 changes: 4 additions & 4 deletions common/test/src/IO/GameConfigParserTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ namespace TrenchBroom {
"description": "Player cannot pass through the brush (other things can)"
}, // 1 << 16
{
"name": "mosterclip",
"name": "monsterclip",
"description": "Monster cannot pass through the brush (player and other things can)"
}, // 1 << 17
{
Expand Down Expand Up @@ -441,7 +441,7 @@ namespace TrenchBroom {
{ "unused", "" },
{ "unused", "" },
{ "playerclip", "Player cannot pass through the brush (other things can)" },
{ "mosterclip", "Monster cannot pass through the brush (player and other things can)" },
{ "monsterclip", "Monster cannot pass through the brush (player and other things can)" },
{ "current_0", "Brush has a current in direction of 0 degrees" },
{ "current_90", "Brush has a current in direction of 90 degrees" },
{ "current_180", "Brush has a current in direction of 180 degrees" },
Expand Down Expand Up @@ -641,7 +641,7 @@ namespace TrenchBroom {
"description": "Player cannot pass through the brush (other things can)"
}, // 65536
{
"name": "mosterclip",
"name": "monsterclip",
"description": "Monster cannot pass through the brush (player and other things can)"
}, // 131072
{
Expand Down Expand Up @@ -765,7 +765,7 @@ namespace TrenchBroom {
{ "unused", "" },
{ "unused", "" },
{ "playerclip", "Player cannot pass through the brush (other things can)" },
{ "mosterclip", "Monster cannot pass through the brush (player and other things can)" },
{ "monsterclip", "Monster cannot pass through the brush (player and other things can)" },
{ "current_0", "Brush has a current in direction of 0 degrees" },
{ "current_90", "Brush has a current in direction of 90 degrees" },
{ "current_180", "Brush has a current in direction of 180 degrees" },
Expand Down

0 comments on commit d7093bb

Please sign in to comment.