index: release v1.18 with only altgr index linked
[sheet.git] / sc.plp
diff --git a/sc.plp b/sc.plp
index e0465bac520acaa28cca7557c033d2fcd9b2637d..e784cbdd6dbe6a67886bf98e5beb85c92f3c6463 100644 (file)
--- a/sc.plp
+++ b/sc.plp
@@ -38,7 +38,7 @@ my $datafile = "sc-units-$Request";
 
 Html({
        title => "$scver{title} unit cheat sheet",
-       version => '1.3',
+       version => '1.4',
        description => [
                "Reference of $scver{game} unit properties,"
                . " comparing various statistics of all the units in $scver{name}"
@@ -251,7 +251,10 @@ sub showrangeint {
                my $specials = $row->{special} or return '';
                return join ' ', map {
                        sprintf '<span%s title="%s">%s</span>',
-                               $_->{duration} < 0 && ' class="magic-perma"',
+                               join('',
+                                       $_->{duration} < 0 && ' class="magic-perma"',
+                                       $_->{detect} && ' class="unit-detect"',
+                               ),
                                join('',
                                        $_->{name} // $_->{alt},
                                        $_->{desc} ? ": $_->{desc}" : '',