Skip to content

Commit

Permalink
Beds: Use mod textures instead of default_wood.png
Browse files Browse the repository at this point in the history
No longer use default_wood.png for one side of the bed head and
one side of the bed bottom node.
Add a new texture for the underside of both beds.
  • Loading branch information
TumeniNodes authored and paramat committed Oct 29, 2018
1 parent 58f6994 commit 5ccf965
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions mods/beds/README.txt
Expand Up @@ -10,6 +10,10 @@ Various Minetest developers and contributors (MIT)
Authors of media (textures)
---------------------------
BlockMen (CC BY-SA 3.0)
All textures unless otherwise noted

TumeniNodes (CC BY-SA 3.0)
beds_bed_under.png

This mod adds a bed to Minetest which allows to skip the night.
To sleep, rightclick the bed. If playing in singleplayer mode the night gets skipped
Expand Down
12 changes: 6 additions & 6 deletions mods/beds/beds.lua
Expand Up @@ -7,19 +7,19 @@ beds.register_bed("beds:fancy_bed", {
tiles = {
bottom = {
"beds_bed_top1.png",
"default_wood.png",
"beds_bed_under.png",
"beds_bed_side1.png",
"beds_bed_side1.png^[transformFX",
"default_wood.png",
"beds_bed_foot.png",
"beds_bed_foot.png",
},
top = {
"beds_bed_top2.png",
"default_wood.png",
"beds_bed_under.png",
"beds_bed_side2.png",
"beds_bed_side2.png^[transformFX",
"beds_bed_head.png",
"default_wood.png",
"beds_bed_head.png",
}
},
nodebox = {
Expand Down Expand Up @@ -58,15 +58,15 @@ beds.register_bed("beds:bed", {
tiles = {
bottom = {
"beds_bed_top_bottom.png^[transformR90",
"default_wood.png",
"beds_bed_under.png",
"beds_bed_side_bottom_r.png",
"beds_bed_side_bottom_r.png^[transformfx",
"beds_transparent.png",
"beds_bed_side_bottom.png"
},
top = {
"beds_bed_top_top.png^[transformR90",
"default_wood.png",
"beds_bed_under.png",
"beds_bed_side_top_r.png",
"beds_bed_side_top_r.png^[transformfx",
"beds_bed_side_top.png",
Expand Down
1 change: 1 addition & 0 deletions mods/beds/license.txt
Expand Up @@ -30,6 +30,7 @@ Licenses of media (textures)

Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
Copyright (C) 2014-2016 BlockMen
Copyright (C) 2018 TumeniNodes

You are free to:
Share — copy and redistribute the material in any medium or format.
Expand Down
Binary file added mods/beds/textures/beds_bed_under.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5ccf965

Please sign in to comment.