Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 24, 2011, 4:33:48 PM (13 years ago)
Author:
dafrick
Message:

Some cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/dockingsystem2/src/modules/docking/DockToShip.cc

    r8501 r8560  
    4343    {
    4444        RegisterObject(DockToShip);
    45         COUT(0) << "DockToShip instance created.." << endl;
     45        COUT(4) << "DockToShip instance created.." << endl;
    4646    }
    4747
     
    6969    bool DockToShip::docking(PlayerInfo* player)
    7070    {
    71         COUT(0) << "DockToShip::attach" << endl;
     71        COUT(4) << "DockToShip::attach" << endl;
    7272
    7373        DockingTarget *target = DockingEffect::findTarget(this->target);
     
    7979        ControllableEntity *dockTo = (ControllableEntity*) target->getParent();
    8080        if (dockTo == NULL) {
    81             COUT(0) << "Parent is not a ControllableEntity.." << std::endl;
     81            COUT(2) << "Parent is not a ControllableEntity.." << std::endl;
    8282            return false;
    8383        }
     
    9292    bool DockToShip::release(PlayerInfo* player)
    9393    {
    94         COUT(0) << "DockToShip::release" << endl;
     94        COUT(4) << "DockToShip::release" << endl;
    9595
    9696        player->stopTemporaryControl();
Note: See TracChangeset for help on using the changeset viewer.