Whenever I mount the item to my back if I go into third person mode Blockland crashes. Anyone know how to fix this?
function FLUDDImage::onMount(%this, %obj, %slot)
{
parent::onMount(%this, %obj, %slot);
%obj.playThread(1, root);
%obj.mountImage(FLUDDImage, 2);
%obj.hideNode(cape);
%obj.hideNode(pack);
%obj.hideNode(quiver);
%obj.hideNode(tank);
%obj.hideNode(armor);
%obj.hideNode(bucket);
}
function FLUDDImage::onUnMount(%this, %obj, %slot)
{
parent::onUnMount(%this, %obj, %slot);
%obj.unMountImage(2);
%obj.client.applyBodyParts();
%obj.client.applyBodyColors();
}