| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | package BalanceOfPower::Commands::BoostProduction; | 
| 2 |  |  |  |  |  |  | $BalanceOfPower::Commands::BoostProduction::VERSION = '0.400115'; | 
| 3 | 13 |  |  | 13 |  | 58 | use Moo; | 
|  | 13 |  |  |  |  | 28 |  | 
|  | 13 |  |  |  |  | 72 |  | 
| 4 |  |  |  |  |  |  |  | 
| 5 | 13 |  |  | 13 |  | 2999 | use BalanceOfPower::Constants ":all"; | 
|  | 13 |  |  |  |  | 22 |  | 
|  | 13 |  |  |  |  | 7519 |  | 
| 6 |  |  |  |  |  |  |  | 
| 7 |  |  |  |  |  |  | extends 'BalanceOfPower::Commands::NoArgs'; | 
| 8 |  |  |  |  |  |  |  | 
| 9 |  |  |  |  |  |  | sub IA | 
| 10 |  |  |  |  |  |  | { | 
| 11 | 18 |  |  | 18 | 0 | 25 | my $self = shift; | 
| 12 | 18 |  |  |  |  | 41 | my $nation = $self->get_nation(); | 
| 13 | 18 | 100 |  |  |  | 66 | if($nation->production < EMERGENCY_PRODUCTION_LIMIT) | 
| 14 |  |  |  |  |  |  | { | 
| 15 | 5 |  |  |  |  | 11 | return "BOOST PRODUCTION" | 
| 16 |  |  |  |  |  |  | } | 
| 17 |  |  |  |  |  |  | else | 
| 18 |  |  |  |  |  |  | { | 
| 19 | 13 |  |  |  |  | 27 | return undef; | 
| 20 |  |  |  |  |  |  | } | 
| 21 |  |  |  |  |  |  | } | 
| 22 |  |  |  |  |  |  |  | 
| 23 |  |  |  |  |  |  | 1; |