Set whether this sapling will grow when next ticked with bonemeal @param isInstantGrowable true if the Sapling should grow when next ticked with bonemeal
(boolean isInstantGrowable)
| 100 | * with bonemeal |
| 101 | */ |
| 102 | public void setIsInstantGrowable(boolean isInstantGrowable) { |
| 103 | setData(isInstantGrowable ? (byte) ((getData() & 0x7) | 0x8) : (byte) (getData() & 0x7)); |
| 104 | } |
| 105 | |
| 106 | @Override |
| 107 | public String toString() { |
no test coverage detected