ACTUALLY fix it

This commit is contained in:
piebot 2026-03-26 18:11:27 +03:00
parent 1df2fd42dd
commit fc0927065a
2 changed files with 5 additions and 5 deletions

View file

@ -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;
}

View file

@ -5,7 +5,7 @@
#include "TallGrass2.h"
DoublePlantFeature::DoublePlantFeature(bool doUpdate)
: Feature(doUpdate), m_plantType(0)
: Feature(doUpdate), m_plantType(1)
{
}