Skip to content

Commit

Permalink
[Instance] Naxx: always open gate 181198 and 181199
Browse files Browse the repository at this point in the history
https://github.com/cmangos/tbc-db/blob/master/Updates/Instances/533_naxxramas.sql#L2662-L2663
Both of the -1 should actually be 1 afaict (they are unused door gameobjects in Naxxramas which are supposed to be always open, but with -1 or 0 they are closed)
  • Loading branch information
AnonXS committed Apr 11, 2024
1 parent ff4773b commit 2cf8e0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Updates/Instances/533_naxxramas.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2659,8 +2659,8 @@ INSERT INTO `gameobject_addon` (`guid`, `animprogress`, `state`) VALUES
(@OGUID+12, 0, -1),
(@OGUID+13, 0, -1),
(@OGUID+14, 0, -1),
(@OGUID+15, 0, -1),
(@OGUID+16, 0, -1),
(@OGUID+15, 0, 1),
(@OGUID+16, 0, 1),
(@OGUID+17, 0, -1),
(@OGUID+18, 0, -1),
(@OGUID+19, 0, -1),
Expand Down

0 comments on commit 2cf8e0c

Please sign in to comment.