Fix an itemban issue due to localization

This commit is contained in:
ZIT WANG 2017-04-26 19:26:54 +08:00
parent 34116cf5c4
commit 85b0b7bc6a
2 changed files with 3 additions and 3 deletions

View file

@ -879,7 +879,7 @@ namespace TShockAPI
(TShock.Itembans.ItemIsBanned(name, this) || !TShock.Config.AllowAllowedGroupsToSpawnBannedItems))
return false;
GiveItem(type,name,width,height,stack,prefix);
GiveItem(type, name, width, height, stack, prefix);
return true;
}