Fix /spawnmob not spawning negative IDs again.
This commit is contained in:
parent
331eeb8cec
commit
9ad63c37a6
2 changed files with 2 additions and 7 deletions
|
|
@ -2300,7 +2300,7 @@ namespace TShockAPI
|
|||
var npc = npcs[0];
|
||||
if (npc.type >= 1 && npc.type < Main.maxNPCTypes && npc.type != 113)
|
||||
{
|
||||
TSPlayer.Server.SpawnNPC(npc.type, npc.FullName, amount, args.Player.TileX, args.Player.TileY, 50, 20);
|
||||
TSPlayer.Server.SpawnNPC(npc.netID, npc.FullName, amount, args.Player.TileX, args.Player.TileY, 50, 20);
|
||||
if (args.Silent)
|
||||
{
|
||||
args.Player.SendSuccessMessage("Spawned {0} {1} time(s).", npc.FullName, amount);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue