Fixed grass spread, closes #1743
- Removed the salt parameter in cFastRandom functions, it wasn't doing what we thought it was following the move to C++11
This commit is contained in:
@@ -66,10 +66,8 @@ void cMapDecorator::Update(void)
|
||||
{
|
||||
cFastRandom Random;
|
||||
|
||||
Int64 WorldAge = m_Player->GetWorld()->GetWorldAge();
|
||||
|
||||
// TODO 2014-02-19 xdot: Refine
|
||||
m_Rot = Random.NextInt(16, (int) WorldAge);
|
||||
m_Rot = Random.NextInt(16);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user