forked from VoxeLibre/VoxeLibre
Fix `mcl_books` formating?
This commit is contained in:
parent
054dc22432
commit
40bc219a86
|
@ -205,10 +205,14 @@ end
|
||||||
-- Written Book
|
-- Written Book
|
||||||
minetest.register_craftitem("mcl_books:written_book", {
|
minetest.register_craftitem("mcl_books:written_book", {
|
||||||
description = S("Written Book"),
|
description = S("Written Book"),
|
||||||
_doc_items_longdesc = S("Written books contain some text written by someone. They can be read and copied, but not edited."),
|
_doc_items_longdesc = S(
|
||||||
_doc_items_usagehelp = S("Hold it in your hand, then rightclick to read the book.") .. "\n\n" ..
|
"Written books contain some text written by someone. They can be read and copied, but not edited."
|
||||||
|
),
|
||||||
S("To copy the text of the written book, place it into the crafting grid together with a book and quill (or multiple of those) and craft. The written book will not be consumed. Copies of copies can not be copied."),
|
_doc_items_usagehelp = S("Hold it in your hand, then rightclick to read the book.") ..
|
||||||
|
"\n\n" ..
|
||||||
|
S(
|
||||||
|
"To copy the text of the written book, place it into the crafting grid together with a book and quill (or multiple of those) and craft. The written book will not be consumed. Copies of copies can not be copied."
|
||||||
|
),
|
||||||
inventory_image = "mcl_books_book_written.png",
|
inventory_image = "mcl_books_book_written.png",
|
||||||
groups = { not_in_creative_inventory = 1, book = 1, no_rename = 1 },
|
groups = { not_in_creative_inventory = 1, book = 1, no_rename = 1 },
|
||||||
stack_max = 16,
|
stack_max = 16,
|
||||||
|
|
Loading…
Reference in New Issue