diff options
Diffstat (limited to 'includes/maps.php')
-rw-r--r-- | includes/maps.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/includes/maps.php b/includes/maps.php index f49900f..a170f58 100644 --- a/includes/maps.php +++ b/includes/maps.php @@ -38,6 +38,13 @@ function DisplayMap($mapMatrix, $idprefix = 1, $style = 'normal', $speed = NULL) case 'S': $maptable .= "<td title='Start tile. Position: $j,$i' class='grid_td_startB' id='$handle' >
<div id='child_$handle' class='grid_inner'></div></td>"; break;
+
+ case 'X': $maptable .= "<td title='Pathable By Path 1 or 2 not sure yet. Position: $j,$i' class='grid_td_rockxpath2' id='$handle' >
+ <div id='child_$handle' class='grid_inner'></div></td>"; break;
+
+ case 'x': $maptable .= "<td title='Pathable By Path 1 or 2 not sure yet. Position: $j,$i' class='grid_td_rockxpath1' id='$handle' >
+ <div id='child_$handle' class='grid_inner'></div></td>"; break;
+
case 'f': $maptable .= "<td title='Finish tile. Position: $j,$i' class='grid_td_finish' id='$handle' >
<div id='child_$handle' class='grid_inner'></div></td>"; break;
//TP1
|