diff options
Diffstat (limited to 'includes/mapclass.php')
-rw-r--r-- | includes/mapclass.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/mapclass.php b/includes/mapclass.php index fa4d865..53609a7 100644 --- a/includes/mapclass.php +++ b/includes/mapclass.php @@ -91,6 +91,8 @@ class map { case 'r': $value = ''; $type = TileRock; break; case 'R': $value = 2; $type = TileRock; break; case 'q': $value = 3; $type = TileRock; break; + case 'x': $value = ''; $type = TileSinglePath; break; + case 'X': $value = 2; $type = TileSinglePath; break; //Probably a more intelligent way to do this; but it works: case 'a': $value = ''; $type = TileCheckpoint; break; case 'b': $value = 2; $type = TileCheckpoint; break; |