Skip to content

Commit

Permalink
You should probably truncate and delete the contents of your characte…
Browse files Browse the repository at this point in the history
…r_pet table but also use this on broken hunters
  • Loading branch information
wazy committed Dec 29, 2012
1 parent 0e9609b commit 7fd146b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- Run this to fix the issue of no slots available but the pet(s) do not appear.
-- The player(s) must log out after this query has been run.
UPDATE characters SET `currentPetSlot`= 100, `petSlotUsed`=0 WHERE `class` = 3;
UPDATE characters SET `currentPetSlot`= 100, `petSlotUsed`=0 WHERE `guid` = xxx;
UPDATE character_pet SET `slot` = 100 WHERE `owner` = xxx;

4 comments on commit 7fd146b

@shinebayar-g
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SQL ERROR (1054): Unknown column 'xxx' in 'where clause' ?

@wlasser
Copy link

@wlasser wlasser commented on 7fd146b Jan 3, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol. xxx - this is guid of broken hunters

@shinebayar-g
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i got it after post that lol'd :D

@wazy
Copy link
Author

@wazy wazy commented on 7fd146b Jan 4, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

... really?

Please sign in to comment.