Skip to content

Commit

Permalink
Add yellow flower to Torc the Orc.
Browse files Browse the repository at this point in the history
  • Loading branch information
GrenderG committed Jul 26, 2022
1 parent 8f06378 commit bf74c8a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions etc/databases/world/updates/updates.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7388,5 +7388,14 @@ begin not atomic

insert into applied_updates values ('250720221');
end if;

-- 26/07/2022 1
if (select count(*) from applied_updates where id='260720221') = 0 then
-- Add yellow flower to Torc the Orc.
INSERT INTO `creature_equip_template` (`entry`, `equipentry1`) VALUES ('3148', '2707');
UPDATE `creature_template` SET `equipment_id` = '3148' WHERE (entry = '3148');

insert into applied_updates values ('260720221');
end if;
end $
delimiter ;

0 comments on commit bf74c8a

Please sign in to comment.