Version tick: 4.3.5
Fix boss spawns & invasions not spawning items (@stealownz)
This commit is contained in:
parent
a9d986a639
commit
23b1ae7f07
3 changed files with 9 additions and 4 deletions
|
|
@ -2,6 +2,11 @@
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
|
|
||||||
|
## TShock 4.3.5
|
||||||
|
|
||||||
|
* Fixe bosses & invasions not spawning invasions due to packet change (@stealownz)
|
||||||
|
|
||||||
## TShock 4.3.4
|
## TShock 4.3.4
|
||||||
|
|
||||||
* Fix invasion progress messages (@WhiteXZ)
|
* Fix invasion progress messages (@WhiteXZ)
|
||||||
|
|
|
||||||
|
|
@ -3362,8 +3362,8 @@ namespace TShockAPI
|
||||||
|
|
||||||
var spawnboss = false;
|
var spawnboss = false;
|
||||||
var invasion = false;
|
var invasion = false;
|
||||||
var plr = args.Data.ReadInt32();
|
var plr = args.Data.ReadInt16();
|
||||||
var Type = args.Data.ReadInt32();
|
var Type = args.Data.ReadInt16();
|
||||||
NPC npc = new NPC();
|
NPC npc = new NPC();
|
||||||
npc.SetDefaults(Type);
|
npc.SetDefaults(Type);
|
||||||
spawnboss = npc.boss;
|
spawnboss = npc.boss;
|
||||||
|
|
|
||||||
|
|
@ -53,5 +53,5 @@ using System.Runtime.InteropServices;
|
||||||
// Also, be sure to release on github with the exact assembly version tag as below
|
// Also, be sure to release on github with the exact assembly version tag as below
|
||||||
// so that the update manager works correctly (via the Github releases api and mimic)
|
// so that the update manager works correctly (via the Github releases api and mimic)
|
||||||
|
|
||||||
[assembly: AssemblyVersion("4.3.4")]
|
[assembly: AssemblyVersion("4.3.5")]
|
||||||
[assembly: AssemblyFileVersion("4.3.4")]
|
[assembly: AssemblyFileVersion("4.3.5")]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue