Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 1, 2016, 5:27:49 PM (8 years ago)
Author:
fvultier
Message:

Removed wrong comments in Jump minigame. These comments were artifacts from copy paste.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/modules/objects/SpaceBoundaries.cc

    r11083 r11105  
    8282                    pawnsIn_.push_back(currentPawn);
    8383                }
    84             } else if (this->reaction_ == 2) {
     84            }
     85            else if (this->reaction_ == 2)
     86            {
    8587                float distance = this->computeDistance(currentPawn);
    8688                if(distance >= this->maxDistance_)
     
    8890                    pawnsIn_.push_back(currentPawn);
    8991                }
    90             } else {
     92            }
     93            else
     94            {
    9195                pawnsIn_.push_back(currentPawn);
    9296            }
     
    205209        this->removeAllBillboards();
    206210
     211        if(!this->isActive())
     212            return;
     213
    207214        float distance;
    208215        bool humanItem;
Note: See TracChangeset for help on using the changeset viewer.