Skip to content

Commit b9422ed

Browse files
Thomas--Sparamat
authored andcommittedMay 21, 2016
Vessels: Smaller/improved textures, remove duplicated 'inv' textures
Removed unnecessary inventory textures The drinking glass inventory texture now differs from the node texture to be more clearly a drinking glass Smaller textures to reduce size as nodes
1 parent b1e0864 commit b9422ed

8 files changed

+10
-5
lines changed
 

‎mods/vessels/README.txt

+5
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,8 @@ Authors of media files
4343
Unless specifically noted,
4444
Copyright (C) 2012 Vanessa Ezekowitz
4545

46+
The following textures were modified by Thomas-S (License is CC0):
47+
vessels_drinking_glass.png
48+
vessels_drinking_glass_inv.png (Paramat helped to improve this texture)
49+
vessels_glass_bottle.png
50+
vessels_steel_bottle.png

‎mods/vessels/init.lua

+5-5
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ minetest.register_node("vessels:glass_bottle", {
7070
description = "Glass Bottle (empty)",
7171
drawtype = "plantlike",
7272
tiles = {"vessels_glass_bottle.png"},
73-
inventory_image = "vessels_glass_bottle_inv.png",
73+
inventory_image = "vessels_glass_bottle.png",
7474
wield_image = "vessels_glass_bottle.png",
7575
paramtype = "light",
7676
is_ground_content = false,
7777
walkable = false,
7878
selection_box = {
7979
type = "fixed",
80-
fixed = {-0.25, -0.5, -0.25, 0.25, 0.4, 0.25}
80+
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
8181
},
8282
groups = {vessel=1,dig_immediate=3,attached_node=1},
8383
sounds = default.node_sound_glass_defaults(),
@@ -103,7 +103,7 @@ minetest.register_node("vessels:drinking_glass", {
103103
walkable = false,
104104
selection_box = {
105105
type = "fixed",
106-
fixed = {-0.25, -0.5, -0.25, 0.25, 0.4, 0.25}
106+
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
107107
},
108108
groups = {vessel=1,dig_immediate=3,attached_node=1},
109109
sounds = default.node_sound_glass_defaults(),
@@ -122,14 +122,14 @@ minetest.register_node("vessels:steel_bottle", {
122122
description = "Heavy Steel Bottle (empty)",
123123
drawtype = "plantlike",
124124
tiles = {"vessels_steel_bottle.png"},
125-
inventory_image = "vessels_steel_bottle_inv.png",
125+
inventory_image = "vessels_steel_bottle.png",
126126
wield_image = "vessels_steel_bottle.png",
127127
paramtype = "light",
128128
is_ground_content = false,
129129
walkable = false,
130130
selection_box = {
131131
type = "fixed",
132-
fixed = {-0.25, -0.5, -0.25, 0.25, 0.4, 0.25}
132+
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
133133
},
134134
groups = {vessel=1,dig_immediate=3,attached_node=1},
135135
sounds = default.node_sound_defaults(),
183 Bytes
Loading
Loading
29 Bytes
Loading
-200 Bytes
Binary file not shown.
91 Bytes
Loading
-257 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.