Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -181,21 +181,21 @@ public static IModelCustom getGrapple() {

public static IModelCustom getLampBase() {
if (lampBase == null) {
lampBase = loadModel(GalacticraftCore.ASSET_PREFIX, "models/arclampMetal.obj");
lampBase = loadModel(GalacticraftCore.ASSET_PREFIX, "models/arclampBase.obj");
}
return lampBase;
}

public static IModelCustom getLampMetal() {
if (lampMetal == null) {
lampMetal = loadModel(GalacticraftCore.ASSET_PREFIX, "models/arclampLight.obj");
lampMetal = loadModel(GalacticraftCore.ASSET_PREFIX, "models/arclampMetal.obj");
}
return lampMetal;
}

public static IModelCustom getLampLight() {
if (lampLight == null) {
lampLight = loadModel(GalacticraftCore.ASSET_PREFIX, "models/arclampBase.obj");
lampLight = loadModel(GalacticraftCore.ASSET_PREFIX, "models/arclampLight.obj");
}
return lampLight;
}
Expand Down
Loading