Merge pull request #2601 from gohjoseph/general-devel

Fix mobs not dropping picked up coins
This commit is contained in:
Chris 2022-03-19 13:06:17 +10:30 committed by GitHub
commit 2f0a9783db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -14,6 +14,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when addin
## Upcoming changes
* Fixed duplicate characters (twins) after repeatedly logging in as the same character due to connection not being immediately closed during `NetHooks_NameCollision`. (@gohjoseph)
* Fixed mobs not dropping picked up coins. (@gohjoseph)
* You could be here!
## TShock 4.5.16

View file

@ -3958,7 +3958,7 @@ namespace TShockAPI
return true;
}
return true;
return false;
}
private static bool HandleKillPortal(GetDataHandlerArgs args)