Skip to content

Commit

Permalink
Fix SSC pet sublevel
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyeriah committed Dec 10, 2024
1 parent 6abe45c commit fe6c072
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/sql/db-world/updates/smartstone.sql
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ DELETE FROM `creature_template_model` WHERE `CreatureID` = @Entry;
INSERT INTO `creature_template_model` (`CreatureID`, `Idx`, `CreatureDisplayID`, `DisplayScale`, `Probability`, `VerifiedBuild`) VALUES
(@Entry, 0, @Model, @Scale, 1, 0);

INSERT INTO `smartstone_pets` (`CreatureId`, `Enabled`, `Description`) VALUES
(@Entry, 1, @Description);
INSERT INTO `smartstone_pets` (`CreatureId`, `Enabled`, `SubscriptionLevel`, `Description`) VALUES
(@Entry, 1, @SubLevel, @Description);

SET
@Entry := 80005,
Expand Down

0 comments on commit fe6c072

Please sign in to comment.