Fix per-wave spawnpoints-node.

This commit is contained in:
garbagemule
2014-01-27 23:36:48 +01:00
parent fd7a9c0d0b
commit e02f437c2a
2 changed files with 3 additions and 3 deletions
@@ -356,8 +356,8 @@ public class WaveParser
return result;
}
// Split the string by commas
String[] spawns = spawnString.split(",");
// Split the string by semicolons
String[] spawns = spawnString.split(";");
ArenaRegion region = arena.getRegion();
for (String spawn : spawns) {