diff --git a/CHANGELOG.md b/CHANGELOG.md index 783a1b99..858535c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ This is the rolling changelog for TShock for Terraria. Use past tense when adding new entries; sign your name off when you add or change something. This should primarily be things like user changes, not necessarily codebase changes unless it's really relevant or large. ## Upcoming Release +* Fix pet licenses. (@Olink) * Initial support for Journey mode in SSC worlds. (@Olink) ## TShock 4.4.0 (Pre-release 8) diff --git a/TShockAPI/GetDataHandlers.cs b/TShockAPI/GetDataHandlers.cs index 128de72e..3eee034f 100644 --- a/TShockAPI/GetDataHandlers.cs +++ b/TShockAPI/GetDataHandlers.cs @@ -2855,6 +2855,15 @@ namespace TShockAPI string thing; switch (thingType) { + case -14: + thing = "has sent a request to the bunny delivery service"; + break; + case -13: + thing = "has sent a request to the dog delivery service"; + break; + case -12: + thing = "has sent a request to the cat delivery service"; + break; case -11: thing = "applied advanced combat techniques"; break;