mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-03 08:26:11 +00:00
Merge pull request #995 from CocoTheOwner/printWrongSpawner
Better print information about wrong spawner on marker
This commit is contained in:
commit
9ba4dd4099
@ -597,6 +597,10 @@ public class IrisWorldManager extends EngineAssignedWorldManager {
|
||||
|
||||
for (String i : mark.getSpawners()) {
|
||||
IrisSpawner m = getData().getSpawnerLoader().load(i);
|
||||
if (m == null) {
|
||||
Iris.error("Cannot load spawner: " + i + " for marker on " + getName());
|
||||
continue;
|
||||
}
|
||||
m.setReferenceMarker(mark);
|
||||
|
||||
// This is so fucking incorrect its a joke
|
||||
|
Loading…
x
Reference in New Issue
Block a user