added debug messages to smart moving support
This commit is contained in:
parent
f857d710ed
commit
62552c40a6
1 changed files with 5 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
package net.machinemuse.powersuits.client.render.item;
|
||||
|
||||
import net.machinemuse.numina.general.MuseLogger;
|
||||
|
||||
/**
|
||||
* Author: MachineMuse (Claire Semple)
|
||||
* Created: 10:01 PM, 11/07/13
|
||||
|
@ -11,8 +13,11 @@ public class ArmorModelInstance {
|
|||
if (instance == null) {
|
||||
// instance = new VanillaArmorModel();
|
||||
try {
|
||||
MuseLogger.logDebug("Attempting to load Smart Moving armor model.");
|
||||
instance = new SMovingArmorModel();
|
||||
MuseLogger.logDebug("Smart Moving armor model loaded successfully!");
|
||||
} catch (Throwable e) {
|
||||
MuseLogger.logDebug("Smart Moving armor model did not load successfully. Either Smart Moving is not installed, or there was another problem.");
|
||||
instance = new VanillaArmorModel();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue