Fixed small error with down (I think)

This commit is contained in:
elacey
2019-05-08 14:44:20 -04:00
parent 83cdb4a057
commit b316d3daef

View File

@@ -130,7 +130,7 @@ class Room {
exits.put("west", west);
if (up != null)
exits.put("up", up);
if (up != null)
if (down != null)
exits.put("down", down);
}