1
0
Fork 0

Little tweaks

This commit is contained in:
Piegames 2018-04-24 03:30:32 +02:00
parent 7a11fd1d0b
commit a532a88684

View file

@ -435,10 +435,10 @@ public class DungeonGenerator {
} }
float prob2 = 0.04f; float prob2 = 0.04f;
if (UnityEngine.Random.value > 1 - prob2 if (UnityEngine.Random.value > 1 - prob2
&& x != r.bounds.x && x > r.bounds.x +1
&& x != r.bounds.x + r.bounds.width && x < r.bounds.x + r.bounds.width-1
&& y != r.bounds.y && y > r.bounds.y+1
&& y != r.bounds.y + r.bounds.height) && y < r.bounds.y + r.bounds.height-1)
{ {
r.spawnpoints.Add(pos); r.spawnpoints.Add(pos);
} }