fixed chest, improved ui, improved difficulty

This commit is contained in:
TAASONI3
2023-12-23 21:19:05 +01:00
parent 989732ff97
commit bf705a52a8
39 changed files with 6351 additions and 5676 deletions

View File

@@ -260,15 +260,15 @@ public class ContentGenerator : MonoBehaviour
{
return null;
}
else if (chance >= 10 && chance < 40)
else if (chance >= 10 && chance < 25)
{
return house;
}
else if (chance >= 40 && chance < 65)
else if (chance >= 25 && chance < 55)
{
return trees[rand.Next(0, trees.Length)];
}
else if (chance >= 65 && chance < 90)
else if (chance >= 55 && chance < 85)
{
return stones[rand.Next(0, stones.Length)];
}