Remove "text" from wall signs, they are used for chairs!
This commit is contained in:
@@ -1229,12 +1229,15 @@ def generate_special_texture(blockID, data):
|
|||||||
ImageDraw.Draw(texture).rectangle((0,12,15,15),outline=(0,0,0,0),fill=(0,0,0,0))
|
ImageDraw.Draw(texture).rectangle((0,12,15,15),outline=(0,0,0,0),fill=(0,0,0,0))
|
||||||
|
|
||||||
# draw some random black dots, they will look as text
|
# draw some random black dots, they will look as text
|
||||||
|
""" don't draw text at the moment, they are used in blank for decoration
|
||||||
|
|
||||||
if data in (3,4):
|
if data in (3,4):
|
||||||
for i in range(15):
|
for i in range(15):
|
||||||
x = randint(4,11)
|
x = randint(4,11)
|
||||||
y = randint(3,7)
|
y = randint(3,7)
|
||||||
texture.putpixel((x,y),(0,0,0,255))
|
texture.putpixel((x,y),(0,0,0,255))
|
||||||
|
"""
|
||||||
|
|
||||||
img = Image.new("RGBA", (24,24), (38,92,255,0))
|
img = Image.new("RGBA", (24,24), (38,92,255,0))
|
||||||
|
|
||||||
incrementx = 0
|
incrementx = 0
|
||||||
|
|||||||
Reference in New Issue
Block a user