diff options
author | Wuzzy <wuzzy2@mail.ru> | 2020-09-04 20:50:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 20:50:03 +0200 |
commit | 9faeca329039f33f7e2af99eb021cea5b18beceb (patch) | |
tree | 8f49a7e581457bfff9086e2597df18b649760057 /games/devtest/mods/bucket | |
parent | b3ace8f19746b53f839e7b0bdff0843c83866f64 (diff) | |
download | minetest-9faeca329039f33f7e2af99eb021cea5b18beceb.tar.gz minetest-9faeca329039f33f7e2af99eb021cea5b18beceb.tar.bz2 minetest-9faeca329039f33f7e2af99eb021cea5b18beceb.zip |
Devtest: Extend tooltips of many items and tools (#10312)
Also show error message when using tools wrong
Diffstat (limited to 'games/devtest/mods/bucket')
-rw-r--r-- | games/devtest/mods/bucket/init.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/devtest/mods/bucket/init.lua b/games/devtest/mods/bucket/init.lua index 3189d4aa6..ff58b0669 100644 --- a/games/devtest/mods/bucket/init.lua +++ b/games/devtest/mods/bucket/init.lua @@ -1,7 +1,8 @@ -- Bucket: Punch liquid source or flowing liquid to collect it minetest.register_tool("bucket:bucket", { - description = "Bucket", + description = "Bucket".."\n".. + "Picks up liquid nodes", inventory_image = "bucket.png", stack_max = 1, liquids_pointable = true, |