Fix for URLs' not being sent: setting the scale calls createMohawk, which

reseeds the random number generator, breaking "shouldDo."
This commit is contained in:
Andrzej Kapolka 2013-10-04 13:42:03 -07:00
parent b281facf45
commit 5f26177560

View file

@ -313,6 +313,9 @@ void Head::render(float alpha, bool isMine) {
}
void Head::setScale (float scale) {
if (_scale == scale) {
return;
}
_scale = scale;
createMohawk();