Add Deerclops to spawnboss command

Fixes #2500
This commit is contained in:
Lucas Nicodemus 2021-11-20 12:04:55 -08:00
parent b44d72056c
commit abb12629ad
2 changed files with 6 additions and 0 deletions

View file

@ -2674,6 +2674,11 @@ namespace TShockAPI
TSPlayer.Server.SpawnNPC(npc.type, npc.FullName, amount, args.Player.TileX, args.Player.TileY);
spawnName = "a Stardust Pillar";
break;
case "deerclops":
npc.SetDefaults(668);
TSPlayer.Server.SpawnNPC(npc.type, npc.FullName, amount, args.Player.TileX, args.Player.TileY);
spawnName = "a Deerclops";
break;
default:
args.Player.SendErrorMessage("Invalid boss type!");
return;