Fix itemdef drop on NULL texture
parent
d7395cd2ab
commit
c824abd7b2
|
@ -247,7 +247,8 @@ public:
|
||||||
i = values.begin(); i != values.end(); ++i)
|
i = values.begin(); i != values.end(); ++i)
|
||||||
{
|
{
|
||||||
ClientCached *cc = *i;
|
ClientCached *cc = *i;
|
||||||
cc->wield_mesh->drop();
|
if (cc->wield_mesh)
|
||||||
|
cc->wield_mesh->drop();
|
||||||
delete cc;
|
delete cc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue