From 4f954ba328b7f10b54d1baaa88649419b982a75f Mon Sep 17 00:00:00 2001 From: dude22072 Date: Tue, 17 Jan 2023 17:03:24 -0600 Subject: [PATCH] Fix LogMessage stuff --- src/scripts/quest/classquest/WHM/JobWhm350.cpp | 2 +- src/scripts/quest/classquest/WHM/JobWhm450.cpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/scripts/quest/classquest/WHM/JobWhm350.cpp b/src/scripts/quest/classquest/WHM/JobWhm350.cpp index 7c45ae54..b8019a72 100644 --- a/src/scripts/quest/classquest/WHM/JobWhm350.cpp +++ b/src/scripts/quest/classquest/WHM/JobWhm350.cpp @@ -222,7 +222,7 @@ private: void Scene00004Return( World::Quest& quest, Entity::Player& player, const Event::SceneResult& result ) { eventMgr().sendEventNotice( player, getId(), 0, 0 ); - //TODO: Show the "Your communion has furthered your potentional as a white mage." message. Is it that logmessage0 var? + playerMgr().sendLogMessage( player, Logmessage0 ); quest.setSeq( SeqFinish ); } diff --git a/src/scripts/quest/classquest/WHM/JobWhm450.cpp b/src/scripts/quest/classquest/WHM/JobWhm450.cpp index b7a316b9..4953a214 100644 --- a/src/scripts/quest/classquest/WHM/JobWhm450.cpp +++ b/src/scripts/quest/classquest/WHM/JobWhm450.cpp @@ -215,7 +215,7 @@ private: void Scene00003Return( World::Quest& quest, Entity::Player& player, const Event::SceneResult& result ) { eventMgr().sendEventNotice( player, getId(), 0, 0 );//TODO:Item Icon, Cleric's Gloves - //TODO: Show "Your Garb is not blessed with the power of A-Towa-Cant." message (Logmessage0?) + playerMgr().sendLogMessage( player, Logmessage0 ); quest.setUI8AL( 1 ); quest.setUI8CH( 0 ); checkQuestCompletion( quest, player ); @@ -242,7 +242,7 @@ private: void Scene00005Return( World::Quest& quest, Entity::Player& player, const Event::SceneResult& result ) { eventMgr().sendEventNotice( player, getId(), 1, 0 );//TODO:Item Icon, Cleric's Culottes - //TODO: Show "Your Garb is not blessed with the power of A-Towa-Cant." message (Logmessage0?) + playerMgr().sendLogMessage( player, Logmessage0 ); quest.setUI8BH( 1 ); quest.setUI8CL( 0 ); checkQuestCompletion( quest, player ); @@ -269,7 +269,7 @@ private: void Scene00007Return( World::Quest& quest, Entity::Player& player, const Event::SceneResult& result ) { eventMgr().sendEventNotice( player, getId(), 2, 0 );//TODO:Item Icon, Cleric's Boots - //TODO: Show "Your Garb is not blessed with the power of A-Towa-Cant." message (Logmessage0?) + playerMgr().sendLogMessage( player, Logmessage0 ); quest.setUI8BL( 1 ); quest.setUI8DH( 0 ); checkQuestCompletion( quest, player ); @@ -437,7 +437,7 @@ private: void Scene00021Return( World::Quest& quest, Entity::Player& player, const Event::SceneResult& result ) { eventMgr().sendEventNotice( player, getId(), 6, 0 );//TODO:Item Icon, Cleric's Circlet - //TODO: Show "Your Garb is not blessed with the power of A-Towa-Cant." message (Logmessage0?) + playerMgr().sendLogMessage( player, Logmessage0 ); quest.setSeq( SeqFinish ); quest.setUI8BH( 0 ); }