summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2017-02-12 11:45:51 +0000
committerTenPlus1 <kinsellaja@yahoo.com>2017-02-12 11:45:51 +0000
commit746f92eb069dd46b3fd243ea9e533b9f3086bf3b (patch)
tree30659d7f5b37a6601fb0f2df9ff32783f41dddfb
parent424b905b60bc5f1a8cc2b429a65e80cdc49be475 (diff)
Amend visual_scale for plantlike nodes
-rw-r--r--beanpole.lua4
-rw-r--r--compatibility.lua2
-rw-r--r--corn.lua2
-rw-r--r--grapes.lua4
4 files changed, 5 insertions, 7 deletions
diff --git a/beanpole.lua b/beanpole.lua
index cef2767..f06aea5 100644
--- a/beanpole.lua
+++ b/beanpole.lua
@@ -62,7 +62,7 @@ minetest.register_node("farming:beanpole", {
drawtype = "plantlike",
tiles = {"farming_beanpole.png"},
inventory_image = "farming_beanpole.png",
- visual_scale = 1.45,
+ visual_scale = 1.90, -- 1.45,
paramtype = "light",
walkable = false,
buildable_to = true,
@@ -125,7 +125,7 @@ minetest.register_craft({
local crop_def = {
drawtype = "plantlike",
tiles = {"farming_beanpole_1.png"},
- visual_scale = 1.45,
+ visual_scale = 1.90, -- 1.45,
paramtype = "light",
walkable = false,
buildable_to = true,
diff --git a/compatibility.lua b/compatibility.lua
index a887a16..4354e60 100644
--- a/compatibility.lua
+++ b/compatibility.lua
@@ -10,7 +10,6 @@ else
minetest.register_node(":ethereal:banana", {
description = "Banana",
drawtype = "torchlike",
- visual_scale = 1.0,
tiles = {"banana_single.png"},
inventory_image = "banana_single.png",
wield_image = "banana_single.png",
@@ -59,7 +58,6 @@ else
minetest.register_node(":ethereal:orange", {
description = "Orange",
drawtype = "plantlike",
- visual_scale = 1.0,
tiles = {"farming_orange.png"},
inventory_image = "farming_orange.png",
wield_image = "farming_orange.png",
diff --git a/corn.lua b/corn.lua
index f178a48..3c27ea3 100644
--- a/corn.lua
+++ b/corn.lua
@@ -89,7 +89,7 @@ minetest.register_node("farming:corn_5", table.copy(crop_def))
-- stage 6
crop_def.tiles = {"farming_corn_6.png"}
-crop_def.visual_scale = 1.45
+crop_def.visual_scale = 1.9 -- 1.45
minetest.register_node("farming:corn_6", table.copy(crop_def))
-- stage 7
diff --git a/grapes.lua b/grapes.lua
index 7a3bfc5..e4381e9 100644
--- a/grapes.lua
+++ b/grapes.lua
@@ -57,7 +57,7 @@ minetest.register_node("farming:trellis", {
drawtype = "plantlike",
tiles = {"farming_trellis.png"},
inventory_image = "farming_trellis.png",
- visual_scale = 1.45,
+ visual_scale = 1.9, -- 1.45,
paramtype = "light",
walkable = false,
buildable_to = true,
@@ -120,7 +120,7 @@ minetest.register_craft({
local crop_def = {
drawtype = "plantlike",
tiles = {"farming_grapes_1.png"},
- visual_scale = 1.45,
+ visual_scale = 1.9, -- 1.45,
paramtype = "light",
walkable = false,
buildable_to = true,