~armagetronad-ct/armagetronad/0.4-advrim

« back to all changes in this revision

Viewing changes to src/tron/zone/zFortress.cpp

  • Committer: Voodoo
  • Date: 2013-04-11 10:46:24 UTC
  • Revision ID: voodoo-20130411104624-zse1f33o7ten188z
merge -r 1454..1476 lp:armagetronad/0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
501
501
    // TODO: set message for when factor is less than 0; default is "lost X points for a very strange reason".
502
502
    int totalScore = sg_onConquestScore;
503
503
    if ( 0 == enemiesInside_ )
504
 
        totalScore *= sg_onConquestEmptyScoreFactor;
 
504
        totalScore = int(totalScore * sg_onConquestEmptyScoreFactor);
505
505
 
506
506
    // eliminate dead enemies
507
507
    TeamArray enemiesAlive;