Thread: Bags
View Single Post
  #18  
Old 12-21-2020, 06:00 PM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Quote:
Originally Posted by Splose View Post
Should probably do this instead. That query will take all items that were stackable to 1000 and set them to 100.

Code:
UPDATE items SET stacksize = 100 WHERE stacksize > 0 AND stacksize < 100;
Ya, mine was just an example (to be played with). I don't allow stacks bigger than 20 on any items, myself
Reply With Quote