mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
Fixed an array out of bounds error at line 2787.
This commit is contained in:
@@ -2783,7 +2783,7 @@ public class CardFactoryUtil
|
|||||||
|
|
||||||
String d[] = DB.split("/");
|
String d[] = DB.split("/");
|
||||||
int X = 0;
|
int X = 0;
|
||||||
if (d.length > 0)
|
if (d.length > 1)
|
||||||
if (d[1].matches("dX")) // 2/10
|
if (d[1].matches("dX")) // 2/10
|
||||||
{
|
{
|
||||||
String dX = Src.getSVar(d[1]);
|
String dX = Src.getSVar(d[1]);
|
||||||
|
|||||||
Reference in New Issue
Block a user