Index: trunk/src/game/GossipDef.cpp
===================================================================
--- trunk/src/game/GossipDef.cpp (revision 96)
+++ trunk/src/game/GossipDef.cpp (revision 97)
@@ -468,5 +468,6 @@
     }
 
-    // rewarded honor points. Multiply with 10 to satisfy client    data << uint32(pQuest->GetRewSpell());                  // reward spell, this spell will display (icon) (casted if RewSpellCast==0)
+    // rewarded honor points. Multiply with 10 to satisfy client
+    data << uint32(pQuest->GetRewSpell());                  // reward spell, this spell will display (icon) (casted if RewSpellCast==0)
     data << uint32(10*Trinity::Honor::hk_honor_at_level(pSession->GetPlayer()->getLevel(), pQuest->GetRewHonorableKills()));
     data << uint32(pQuest->GetRewSpellCast());              // casted spell
Index: trunk/sql/updates/102_world.sql
===================================================================
--- trunk/sql/updates/102_world.sql (revision 97)
+++ trunk/sql/updates/102_world.sql (revision 97)
@@ -0,0 +1,2 @@
+ALTER TABLE `quest_template`
+    ADD `RewHonorableKills` mediumint(9) unsigned NOT NULL default '0' AFTER `RewRepValue5`;
Index: trunk/sql/world.sql
===================================================================
--- trunk/sql/world.sql (revision 85)
+++ trunk/sql/world.sql (revision 97)
@@ -2683,4 +2683,5 @@
   `RewRepValue4` mediumint(9) NOT NULL default '0',
   `RewRepValue5` mediumint(9) NOT NULL default '0',
+  `RewHonorableKills` mediumint(9) unsigned NOT NULL default '0',
   `RewOrReqMoney` int(11) NOT NULL default '0',
   `RewMoneyMaxLevel` int(10) unsigned NOT NULL default '0',
