Skip to content
Snippets Groups Projects
Commit 6383b39c authored by Nos's avatar Nos
Browse files

BETA: Fixed NPE in `TarBeetleSpawn`.

Patch by: d!go
Reported by: FBIagent, d!go, St3eT
parent 5972b471
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ public class TarBeetleSpawn extends DocumentParser
}
int[] bZones = null;
String bZonesStr = parseString(attrs, "bZones");
String bZonesStr = parseString(attrs, "bZones", "");
if (!bZonesStr.isEmpty())
{
String[] str = bZonesStr.split(";");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment