Merge pull request #1910 from Olink/fix-1904
Add spawn boss packet handlers for pets.
This commit is contained in:
commit
b1f703e05d
2 changed files with 10 additions and 0 deletions
|
|
@ -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.
|
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
|
## Upcoming Release
|
||||||
|
* Fix pet licenses. (@Olink)
|
||||||
* Initial support for Journey mode in SSC worlds. (@Olink)
|
* Initial support for Journey mode in SSC worlds. (@Olink)
|
||||||
|
|
||||||
## TShock 4.4.0 (Pre-release 8)
|
## TShock 4.4.0 (Pre-release 8)
|
||||||
|
|
|
||||||
|
|
@ -2855,6 +2855,15 @@ namespace TShockAPI
|
||||||
string thing;
|
string thing;
|
||||||
switch (thingType)
|
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:
|
case -11:
|
||||||
thing = "applied advanced combat techniques";
|
thing = "applied advanced combat techniques";
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue