diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index cd90f8e6..ee9106fc 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -5207,7 +5207,7 @@ namespace TShockAPI { if (Main.npc[i].active && ((npcId == 0 && !Main.npc[i].townNPC && Main.npc[i].netID != NPCID.TargetDummy) || Main.npc[i].netID == npcId)) { - TSPlayer.Server.StrikeNPC(i, (int)(Main.npc[i].life + (Main.npc[i].defense * 0.5)), 0, 0); + TSPlayer.Server.StrikeNPC(i, (int)(Main.npc[i].life + (Main.npc[i].defense * 0.6)), 0, 0); kills++; } } diff --git a/TerrariaServerAPI b/TerrariaServerAPI index c22ec39f..a9d1b0e4 160000 --- a/TerrariaServerAPI +++ b/TerrariaServerAPI @@ -1 +1 @@ -Subproject commit c22ec39f707f32e19fd59f685d59a79be8d12b5a +Subproject commit a9d1b0e4e096ecbd0b2033ce4ff636759c9448c3 diff --git a/scripts/create_release.py b/scripts/create_release.py index 3d86912d..3a25f76d 100755 --- a/scripts/create_release.py +++ b/scripts/create_release.py @@ -36,7 +36,7 @@ sqlite_bin_name = "Mono.Data.Sqlite.dll" json_bin_name = "Newtonsoft.Json.dll" http_bin_name = "HttpServer.dll" tshock_bin_name = "TShockAPI.dll" -tshock_symbols = "TShockAPI.dll.mdb" +tshock_symbols = "TShockAPI.pdb" bcrypt_bin_name = "BCrypt.Net.dll" geoip_db_name = "GeoIP.dat" @@ -140,6 +140,7 @@ def upload_artifacts(): def update_terraria_source(): subprocess.check_call(['/usr/bin/git', 'submodule', 'init']) subprocess.check_call(['/usr/bin/git', 'submodule', 'update']) + subprocess.check_call(['nuget', 'restore']) subprocess.check_call(['nuget', 'restore', 'TerrariaServerAPI/']) def run_bootstrapper():