Always throw a stack trace if an invalid tile is requested, so that we can more easily track down these errors

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3603 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Elizabeth Fong
2005-06-16 19:54:49 +00:00
parent 1ac09300a7
commit 5b3f842e44
@@ -327,6 +327,7 @@ public abstract class TileSet
} else {
Log.warning("Requested invalid tile [tset=" + this +
", index=" + tileIndex + "].");
Thread.dumpStack();
return false;
}
}