fix some/most? of sdzens broken textures

master
darkrose 2016-04-17 14:46:51 +10:00
parent 4262cd14af
commit 849950830d
9 changed files with 14 additions and 14 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 997 B

After

Width:  |  Height:  |  Size: 997 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -300,8 +300,8 @@ void content_mapnode_special(bool repeat)
i = CONTENT_ROOFTILE_GLASS_BLUE;
f = &content_features(i);
f->description = wgettext("Blue Glass Roof Tile");
f->setAllTextures("glass_blue.png");
f->setTexture(1,"glass_slab_blue.png"); // special texture for top sections
f->setAllTextures("glass.png^glass_pane_blue_side.png");
f->setTexture(1,"glass_slab.png^glass_pane_blue_side.png"); // special texture for top sections
f->setAllTextureFlags(0);
#ifndef SERVER
f->setAllTextureTypes(MATERIAL_ALPHA_BLEND);
@ -323,8 +323,8 @@ void content_mapnode_special(bool repeat)
i = CONTENT_ROOFTILE_GLASS_GREEN;
f = &content_features(i);
f->description = wgettext("Green Glass Roof Tile");
f->setAllTextures("glass_green.png");
f->setTexture(1,"glass_slab_green.png"); // special texture for top sections
f->setAllTextures("glass.png^glass_pane_green_side.png");
f->setTexture(1,"glass_slab.png^glass_pane_green_side.png"); // special texture for top sections
f->setAllTextureFlags(0);
#ifndef SERVER
f->setAllTextureTypes(MATERIAL_ALPHA_BLEND);
@ -346,8 +346,8 @@ void content_mapnode_special(bool repeat)
i = CONTENT_ROOFTILE_GLASS_ORANGE;
f = &content_features(i);
f->description = wgettext("Orange Glass Roof Tile");
f->setAllTextures("glass_orange.png");
f->setTexture(1,"glass_slab_orange.png"); // special texture for top sections
f->setAllTextures("glass.png^glass_pane_orange_side.png");
f->setTexture(1,"glass_slab.png^glass_pane_orange_side.png"); // special texture for top sections
f->setAllTextureFlags(0);
#ifndef SERVER
f->setAllTextureTypes(MATERIAL_ALPHA_BLEND);
@ -369,8 +369,8 @@ void content_mapnode_special(bool repeat)
i = CONTENT_ROOFTILE_GLASS_PURPLE;
f = &content_features(i);
f->description = wgettext("Purple Glass Roof Tile");
f->setAllTextures("glass_purple.png");
f->setTexture(1,"glass_slab_purple.png"); // special texture for top sections
f->setAllTextures("glass.png^glass_pane_purple_side.png");
f->setTexture(1,"glass_slab.png^glass_pane_purple_side.png"); // special texture for top sections
f->setAllTextureFlags(0);
#ifndef SERVER
f->setAllTextureTypes(MATERIAL_ALPHA_BLEND);
@ -392,8 +392,8 @@ void content_mapnode_special(bool repeat)
i = CONTENT_ROOFTILE_GLASS_RED;
f = &content_features(i);
f->description = wgettext("Red Glass Roof Tile");
f->setAllTextures("glass_red.png");
f->setTexture(1,"glass_slab_red.png"); // special texture for top sections
f->setAllTextures("glass.png^glass_pane_red_side.png");
f->setTexture(1,"glass_slab.png^glass_pane_red_side.png"); // special texture for top sections
f->setAllTextureFlags(0);
#ifndef SERVER
f->setAllTextureTypes(MATERIAL_ALPHA_BLEND);
@ -415,8 +415,8 @@ void content_mapnode_special(bool repeat)
i = CONTENT_ROOFTILE_GLASS_YELLOW;
f = &content_features(i);
f->description = wgettext("Yellow Glass Roof Tile");
f->setAllTextures("glass_yellow.png");
f->setTexture(1,"glass_slab_yellow.png"); // special texture for top sections
f->setAllTextures("glass.png^glass_pane_yellow_side.png");
f->setTexture(1,"glass_slab.png^glass_pane_yellow_side.png"); // special texture for top sections
f->setAllTextureFlags(0);
#ifndef SERVER
f->setAllTextureTypes(MATERIAL_ALPHA_BLEND);
@ -438,8 +438,8 @@ void content_mapnode_special(bool repeat)
i = CONTENT_ROOFTILE_GLASS_BLACK;
f = &content_features(i);
f->description = wgettext("Black Glass Roof Tile");
f->setAllTextures("glass_black.png");
f->setTexture(1,"glass_slab_black.png"); // special texture for top sections
f->setAllTextures("glass.png^glass_pane_black_side.png");
f->setTexture(1,"glass_slab.png^glass_pane_black_side.png"); // special texture for top sections
f->setAllTextureFlags(0);
#ifndef SERVER
f->setAllTextureTypes(MATERIAL_ALPHA_BLEND);