--- cfmaps/cfmap2html 2009/11/02 15:40:18 1.38 +++ cfmaps/cfmap2html 2010/01/14 18:29:03 1.39 @@ -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.201'; +our $VERSION = '2.202'; use strict; @@ -152,9 +152,10 @@ if (my $as = $map[$x][$y]) { my @class; - push @class, "fishy" if grep exists $_->{invisible} || exists $_->{face} + push @class, "fishy" if grep exists $_->{invisible} || exists $_->{face} || exists $_->{move_block} || exists $_->{move_allow} - || exists $_->{no_pick}, @$as; + || exists $_->{no_pick} || exists $_->{tag} + , @$as push @class, "exit" if grep $is_exit{$ARCH{$_->{_name}}{type}} && $_->{slaying}, @$as; push @class, "dialog" if grep $_->{msg} =~ /^\@match/m, @$as;