mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
rerun the formatter
This commit is contained in:
parent
ea57f49c8b
commit
ded3877b41
6 changed files with 127 additions and 128 deletions
|
@ -1,12 +1,12 @@
|
|||
/*
|
||||
* This file ("BlockPlant.java") is part of the Actually Additions mod for Minecraft.
|
||||
* It is created and owned by Ellpeck and distributed
|
||||
* under the Actually Additions License to be found at
|
||||
* http://ellpeck.de/actaddlicense
|
||||
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
||||
*
|
||||
* © 2015-2017 Ellpeck
|
||||
*/
|
||||
* This file ("BlockPlant.java") is part of the Actually Additions mod for Minecraft.
|
||||
* It is created and owned by Ellpeck and distributed
|
||||
* under the Actually Additions License to be found at
|
||||
* http://ellpeck.de/actaddlicense
|
||||
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
||||
*
|
||||
* © 2015-2017 Ellpeck
|
||||
*/
|
||||
|
||||
package de.ellpeck.actuallyadditions.mod.blocks.base;
|
||||
|
||||
|
@ -103,7 +103,7 @@ public class BlockPlant extends BlockCrops implements ItemBlockBase.ICustomRarit
|
|||
drop.shrink(1);
|
||||
deductedSeedSize = true;
|
||||
}
|
||||
if(StackUtil.isValid(drop)){
|
||||
if (StackUtil.isValid(drop)) {
|
||||
ItemHandlerHelper.giveItemToPlayer(player, drop);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -85,7 +85,6 @@ public enum ConfigStringListValues {
|
|||
new String[0],
|
||||
"The items that aren't allowed to be put in the Repairer. Use REGISTRY NAMES, and if metadata is needed, add it like so: somemod:some_block@3");
|
||||
|
||||
|
||||
public final String name;
|
||||
public final String category;
|
||||
public final String[] defaultValue;
|
||||
|
|
Loading…
Reference in a new issue