Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 2, 2011, 1:33:24 PM (14 years ago)
Author:
dafrick
Message:

Text coloring in notification queue now working.

Location:
code/branches/tutoriallevel2/src/modules
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/tutoriallevel2/src/modules/notifications/NotificationDispatcher.cc

    r8374 r8377  
    113113        {
    114114            const std::string message = this->createNotificationMessage();
    115             NotificationListener::sendNotification(message, clientId, this->getSender());
     115            NotificationListener::sendNotification(message, this->getSender(), notificationMessageMode::message, notificationSendMode::network, clientId);
    116116        }
    117117        else if(GameMode::isServer())
  • code/branches/tutoriallevel2/src/modules/questsystem/QuestDescription.cc

    r8374 r8377  
    119119        }
    120120
    121         NotificationListener::sendNotification(message, player->getClientID(), QuestDescription::SENDER);
     121        NotificationListener::sendNotification(message, QuestDescription::SENDER, notificationMessageMode::message, notificationSendMode::network, player->getClientID());
    122122        return true;
    123123    }
Note: See TracChangeset for help on using the changeset viewer.