From 91998deaf3fb89b43d341927641c378359d81755 Mon Sep 17 00:00:00 2001 From: Olink Date: Mon, 25 May 2020 03:03:29 -0400 Subject: [PATCH] Add spawn boss packet handlers for pets. --- CHANGELOG.md | 3 +++ TShockAPI/GetDataHandlers.cs | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4d6864e..7313922c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ 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) + ## TShock 4.4.0 (Pre-release 8) * Update for OTAPI 2.0.0.36 and Terraria 1.4.0.4. (@hakusaro, @Patrikkk, @DeathCradle) * Fixed /wind command. (@AxeelAnder) diff --git a/TShockAPI/GetDataHandlers.cs b/TShockAPI/GetDataHandlers.cs index d5e3b2c7..93da1ccb 100644 --- a/TShockAPI/GetDataHandlers.cs +++ b/TShockAPI/GetDataHandlers.cs @@ -2853,6 +2853,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;