1
0

Fixed slime-related comments.

This commit is contained in:
madmaxoft
2014-07-18 23:20:42 +02:00
parent 509d3d3b62
commit 19d012c96e
3 changed files with 10 additions and 5 deletions

View File

@@ -867,13 +867,13 @@ cMonster * cMonster::NewMonsterFromType(cMonster::eType a_MobType)
}
case mtSlime:
{
toReturn = new cSlime(1 << Random.NextInt(3));
toReturn = new cSlime(1 << Random.NextInt(3)); // Size 1, 2 or 4
break;
}
case mtSkeleton:
{
// TODO: Actual detection of spawning in Nether
toReturn = new cSkeleton(Random.NextInt(1) == 0 ? false : true);
toReturn = new cSkeleton((Random.NextInt(1) == 0) ? false : true);
break;
}
case mtVillager: