Merging 1.7.5 Source: levels changes

This commit is contained in:
Evan Debenham
2015-02-02 11:10:04 -05:00
parent e931525669
commit 9dab291797
6 changed files with 35 additions and 38 deletions
@@ -159,7 +159,7 @@ public class CavesLevel extends RegularLevel {
for (Room r : rooms) {
if (r.type == Type.STANDARD) {
for (Room n : r.neigbours) {
if (n.type == Type.STANDARD && !r.connected.containsKey( n )/* && Random.Int( 2 ) == 0*/) {
if (n.type == Type.STANDARD && !r.connected.containsKey( n )) {
Rect w = r.intersect( n );
if (w.left == w.right && w.bottom - w.top >= 5) {