Skip to content

Commit

Permalink
Fix items turning black (#6780)
Browse files Browse the repository at this point in the history
  • Loading branch information
numberZero authored and SmallJoker committed Dec 16, 2017
1 parent fd71a7c commit 770eb09
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/wieldmesh.cpp
Expand Up @@ -320,11 +320,7 @@ scene::SMesh *createSpecialNodeMesh(Client *client, content_t id, std::vector<It
for (video::S3DVertex &v : p.vertices)
v.Color.setAlpha(255);
scene::SMeshBuffer *buf = new scene::SMeshBuffer();
// always set all textures
// with no shaders only texture 0 is ever actually used
buf->Material.setTexture(0, p.layer.texture);
buf->Material.setTexture(1, p.layer.normal_texture);
buf->Material.setTexture(2, p.layer.flags_texture);
p.layer.applyMaterialOptions(buf->Material);
mesh->addMeshBuffer(buf);
buf->append(&p.vertices[0], p.vertices.size(),
Expand Down

0 comments on commit 770eb09

Please sign in to comment.