Merge pull request #1539 from Zaicon/fix-itemdump
Fixed IndexOutOfRange exception
This commit is contained in:
commit
677d15efbb
2 changed files with 2 additions and 1 deletions
|
|
@ -23,6 +23,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin
|
||||||
* Added the ability to ban by account name instead of just banning a character name assuming its an account name. (@hakusaro)
|
* Added the ability to ban by account name instead of just banning a character name assuming its an account name. (@hakusaro)
|
||||||
* Renamed TShock.DB.User to TShock.DB.UserAccount, including all the related methods, classes and events. (@Ryozuki)
|
* Renamed TShock.DB.User to TShock.DB.UserAccount, including all the related methods, classes and events. (@Ryozuki)
|
||||||
* Update OTAPI to 2.0.0.31, which also updates Newtonsoft.Json to 10.0.3 (@Ryozuki)
|
* Update OTAPI to 2.0.0.31, which also updates Newtonsoft.Json to 10.0.3 (@Ryozuki)
|
||||||
|
* Fixed DumpItems() from trying to dump older versions of certain items (negative item IDs). (@Zaicon)
|
||||||
|
|
||||||
## TShock 4.3.24
|
## TShock 4.3.24
|
||||||
* Updated OpenTerraria API to 1.3.5.3 (@DeathCradle)
|
* Updated OpenTerraria API to 1.3.5.3 (@DeathCradle)
|
||||||
|
|
|
||||||
|
|
@ -1206,7 +1206,7 @@ namespace TShockAPI
|
||||||
RestManager.DumpDescriptions();
|
RestManager.DumpDescriptions();
|
||||||
DumpPermissionMatrix("PermissionMatrix.txt");
|
DumpPermissionMatrix("PermissionMatrix.txt");
|
||||||
DumpBuffs("BuffList.txt");
|
DumpBuffs("BuffList.txt");
|
||||||
DumpItems("Items-1_0.txt", -48, 235);
|
DumpItems("Items-1_0.txt", 1, 235);
|
||||||
DumpItems("Items-1_1.txt", 235, 604);
|
DumpItems("Items-1_1.txt", 235, 604);
|
||||||
DumpItems("Items-1_2.txt", 604, 2749);
|
DumpItems("Items-1_2.txt", 604, 2749);
|
||||||
DumpItems("Items-1_3.txt", 2749, Main.maxItemTypes);
|
DumpItems("Items-1_3.txt", 2749, Main.maxItemTypes);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue