diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2012-08-25 02:25:18 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2012-08-25 02:25:18 -0700 |
commit | 6dbf179f94bfbd2e33c9d6284447f46fc85a7ce9 (patch) | |
tree | 07681c0180175223032f91f7e48f3c9e4f2fef4d /includes/maps.php | |
parent | 393462c7a44ae3826c16ad9db8d09b7439996627 (diff) | |
download | pathery-6dbf179f94bfbd2e33c9d6284447f46fc85a7ce9.tar.xz |
Rock X and Rock x UI support
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
|