Skip to content

Commit 8438ae2

Browse files
mingjiansiMingjian SiHelias
authored
GH-Faction-Neutral-Food-Vendor (#58)
Co-authored-by: Mingjian Si <msi@genomoncology.com> Co-authored-by: Stefano Borzì <stefanoborzi32@gmail.com>
1 parent 23b86dc commit 8438ae2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

data/sql/db-world/2024_04_07_01_guildhouse_spawns.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ REPLACE INTO `guild_house_spawns` (`id`, `entry`, `posX`, `posY`, `posZ`, `orien
5858
(45, 187293, 16230.5, 16283.5, 13.9061, 3, 'Guild Vault (Object)'),
5959
(46, 28692, 16236.2, 16315.7, 20.8454, 4.64365, 'Trade Supplies'),
6060
(47, 28776, 16223.7, 16297.9, 20.8454, 6.17044, 'Tabard Vendor'),
61-
(48, 4255, 16230.2, 16316.1, 20.8455, 4.64365, 'Food & Drink Vendor'),
61+
(48, 19572, 16230.2, 16316.1, 20.8455, 4.64365, 'Food & Drink Vendor'),
6262
(49, 6491, 16319.937, 16242.404, 24.4747, 2.206830, 'Spirit Healer'),
6363
(50, 191028, 16255.5, 16304.9, 20.9785, 2.97516, 'Barber Chair (Object)'),
6464
(51, 29636, 16233.2, 16315.9, 20.8454, 4.64365, 'Reagent Vendor'),

src/mod_guildhouse_butler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class GuildHouseSpawner : public CreatureScript
9797
ClearGossipMenuFor(player);
9898
AddGossipItemFor(player, GOSSIP_ICON_TALK, "Trade Supplies", GOSSIP_SENDER_MAIN, 28692, "Spawn Trade Supplies?", GuildHouseVendor, false);
9999
AddGossipItemFor(player, GOSSIP_ICON_TALK, "Tabard Vendor", GOSSIP_SENDER_MAIN, 28776, "Spawn Tabard Vendor?", GuildHouseVendor, false);
100-
AddGossipItemFor(player, GOSSIP_ICON_TALK, "Food & Drink Vendor", GOSSIP_SENDER_MAIN, 4255, "Spawn Food & Drink Vendor?", GuildHouseVendor, false);
100+
AddGossipItemFor(player, GOSSIP_ICON_TALK, "Food & Drink Vendor", GOSSIP_SENDER_MAIN, 19572, "Spawn Food & Drink Vendor?", GuildHouseVendor, false);
101101
AddGossipItemFor(player, GOSSIP_ICON_TALK, "Reagent Vendor", GOSSIP_SENDER_MAIN, 29636, "Spawn Reagent Vendor?", GuildHouseVendor, false);
102102
AddGossipItemFor(player, GOSSIP_ICON_TALK, "Ammo & Repair Vendor", GOSSIP_SENDER_MAIN, 29493, "Spawn Ammo & Repair Vendor?", GuildHouseVendor, false);
103103
AddGossipItemFor(player, GOSSIP_ICON_TALK, "Poisons Vendor", GOSSIP_SENDER_MAIN, 2622, "Spawn Poisons Vendor?", GuildHouseVendor, false);
@@ -229,7 +229,7 @@ class GuildHouseSpawner : public CreatureScript
229229
break;
230230
case 28692: // Trade Supplies
231231
case 28776: // Tabard Vendor
232-
case 4255: // Food & Drink Vendor
232+
case 19572: // Food & Drink Vendor
233233
case 29636: // Reagent Vendor
234234
case 29493: // Ammo & Repair Vendor
235235
case 28690: // Stable Master

0 commit comments

Comments
 (0)