decrease spawn egg max stack size
This commit is contained in:
parent
720ad59f77
commit
bf54705350
1 changed files with 2 additions and 2 deletions
|
@ -162,13 +162,13 @@ public abstract class ItemRegistry {
|
|||
.setColor(TextColor.RED));
|
||||
for(EntityInfo egg : EntityRegistry.SPAWN_EGGS.values()) {
|
||||
registerItem(egg.id().toLowerCase() + "_spawner", (new ItemMonsterPlacer(egg.id()))
|
||||
.setDisplay("Spawner").setMaxAmount(ItemStack.MAX_SIZE));
|
||||
.setDisplay("Spawner").setMaxAmount(128));
|
||||
}
|
||||
for(SpeciesInfo species : SpeciesRegistry.SPECIMEN) {
|
||||
for(CharacterInfo charinfo : species.chars) {
|
||||
if(charinfo.spawner)
|
||||
registerItem(charinfo.skin + "_spawner", (new ItemNpcSpawner(charinfo)).setDisplay("NSC-Spawner")
|
||||
.setMaxAmount(ItemStack.MAX_SIZE));
|
||||
.setMaxAmount(128));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue