sc: rename 'unit' field to 'pop' in data includes
[sheet.git] / sc.plp
diff --git a/sc.plp b/sc.plp
index dc32a47f67b16dddf57266e0b21cbec0a8106d2b..e1132b855564884470427bcdb21b7a1ad5ebf15c 100644 (file)
--- a/sc.plp
+++ b/sc.plp
@@ -266,7 +266,7 @@ sub showrange {
                                        && '<span class="unit-massive" title="massive">⚓</span>',
                        ),
                        '<td class="val unit">' . (
-                               defined $_->{unit} && $_->{unit} == .5 ? '½' : $_->{unit}
+                               defined $_->{pop} && $_->{pop} == .5 ? '½' : $_->{pop}
                        ),
                        '<td class="unit unit-type">' . join('', grep { $_ }
                                (defined $_->{organic} ? !$_->{organic} : $_->{attr}->{mech})
@@ -316,13 +316,13 @@ sub showrange {
                $get{order} ||= '';
                if ($get{order} eq 'size') {
                        $_->{order} = (
-                               $_->{unit}*16 + ($_->{size} // $_->{suit}) + $_->{cargo}/8
+                               $_->{pop}*16 + ($_->{size} // $_->{suit}) + $_->{cargo}/8
                                + $_->{hp}/512 + $_->{min}/8192
                        ) for @$units;
                }
                elsif ($get{order} eq 'cost') {
                        $_->{order} = (
-                               $_->{gas}*1.5 + $_->{min} + $_->{unit}/8 + $_->{build}/256/8
+                               $_->{gas}*1.5 + $_->{min} + $_->{pop}/8 + $_->{build}/256/8
                        ) for @$units;
                }
                elsif ($get{order} eq 'attack') {