diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2012-08-25 04:59:11 -0500 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2012-08-25 04:59:11 -0500 |
commit | 73d12dd8c33eb6ebeee4143707cb59f701936945 (patch) | |
tree | 0ae171ab31dd66acbb317c40c3261cd1648bf5b2 /includes/maps.php | |
parent | e2cfff284c4004d0d11609a22ee535fcf23dcdf9 (diff) | |
parent | 6dbf179f94bfbd2e33c9d6284447f46fc85a7ce9 (diff) | |
download | pathery-73d12dd8c33eb6ebeee4143707cb59f701936945.tar.xz |
Merge branch 'master' of git.raylu.net:pathery
Conflicts:
pages/gallery.php
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 3ddd82f..e322bc4 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
|