(String aMapping)
| 597 | } |
| 598 | |
| 599 | public static ItemStack getBookWithTitle(String aMapping) { |
| 600 | return getBookWithTitle(aMapping, null); |
| 601 | } |
| 602 | public static ItemStack getBookWithTitle(String aMapping, ItemStack aStackToPutNBT) { |
| 603 | ItemStack tStack = BOOK_MAP.get(aMapping); |
| 604 | if (tStack == null) return aStackToPutNBT==null?ST.make(Items.written_book, 1, 0):aStackToPutNBT; |
no test coverage detected