mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-27 07:47:01 +00:00
ACTUALLY fix it
This commit is contained in:
parent
1df2fd42dd
commit
fc0927065a
|
|
@ -430,8 +430,8 @@ int Biome::getRandomDoublePlantType(Random *random)
|
|||
{
|
||||
|
||||
int type = random->nextInt(10);
|
||||
if (type < 7) return 1;
|
||||
if (type == 7) return 4;
|
||||
if (type == 8) return 5;
|
||||
return 3;
|
||||
if (type < 7) return 0;
|
||||
if (type == 7) return 3;
|
||||
if (type == 8) return 4;
|
||||
return 2;
|
||||
}
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
#include "TallGrass2.h"
|
||||
|
||||
DoublePlantFeature::DoublePlantFeature(bool doUpdate)
|
||||
: Feature(doUpdate), m_plantType(0)
|
||||
: Feature(doUpdate), m_plantType(1)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue