From: Rudolf Polzer Date: Sat, 6 Nov 2010 15:33:48 +0000 (+0100) Subject: I really wonder why scale ever worked... ;) X-Git-Tag: xonotic-v0.1.0preview~79 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=e59ff76849434a6f245e3840cfd507fe2577acd9 I really wonder why scale ever worked... ;) --- diff --git a/misc/tools/xonotic-map-compiler b/misc/tools/xonotic-map-compiler index c4f59a9a..5d3f8bca 100755 --- a/misc/tools/xonotic-map-compiler +++ b/misc/tools/xonotic-map-compiler @@ -310,7 +310,7 @@ for my $m(@{$options->{maps}}) or die "-bsp: $?"; if($prescale != 1) { - q3map2 '-scale', @{$options->{scale}}, $prescale, "$m.bsp" + q3map2 '-scale', $prescale, "$m.bsp" or die "-scale: $?"; rename "${m}_s.bsp", "$m.bsp" or die "rename ${m}_s.bsp $m.bsp: $!"; @@ -342,7 +342,7 @@ for my $m(@{$options->{maps}}) if($postscale != 1) { - q3map2 '-scale', @{$options->{scale}}, $postscale, "$m.bsp" + q3map2 '-scale', $postscale, "$m.bsp" or die "-scale: $?"; rename "${m}_s.bsp", "$m.bsp" or die "rename ${m}_s.bsp $m.bsp: $!";