--- cfmaps/cfmap2html 2009/10/31 17:26:44 1.37 +++ cfmaps/cfmap2html 2009/11/02 15:40:18 1.38 @@ -17,7 +17,7 @@ # along with cfmaps; if not, write to the Free Software # Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -our $VERSION = '2.2'; +our $VERSION = '2.201'; use strict; @@ -152,7 +152,9 @@ if (my $as = $map[$x][$y]) { my @class; - push @class, "fishy" if grep $_->{invisible} || $_->{face} || exists $_->{no_pass} || exists $_->{no_pick}, @$as; + push @class, "fishy" if grep exists $_->{invisible} || exists $_->{face} + || exists $_->{move_block} || exists $_->{move_allow} + || exists $_->{no_pick}, @$as; push @class, "exit" if grep $is_exit{$ARCH{$_->{_name}}{type}} && $_->{slaying}, @$as; push @class, "dialog" if grep $_->{msg} =~ /^\@match/m, @$as;