EV-EVA / Ectroverse

Open Source Text based Space Empire Simulator
9 stars 6 forks source link

nuke your own planet #18

Closed bertsarens closed 11 years ago

bertsarens commented 11 years ago

It was possible, it isnt anymore. Will check it out.

bertsarens commented 11 years ago

The reason this goes wrong is this line: if( ( maind.readiness[2] < 0 ) || (( planetd.owner == id )&&(fleetd->order!=CMD_FLEET_ORDER_PLANETBEACON)) || !( svTickStatus ) )

Line: 212 in specop.c Will put the fix online as soon as the new code is there.

should be: if( ( maind.readiness[2] < 0 ) || (( planetd.owner == id )&&((fleetd->order!=CMD_FLEET_ORDER_PLANETBEACON)&&(fleetd->order!=CMD_FLEET_ORDER_NUKEPLANET))) || !( svTickStatus ) )