mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-03-14 05:35:35 +00:00
Account for new doors
This commit is contained in:
parent
2766bb5b73
commit
ae5f5d0ac1
@ -179,11 +179,13 @@ public abstract class DoorDecl {
|
||||
ResourceManager.pheo_fire_door_tex,
|
||||
ResourceManager.pheo_fire_door_black_tex,
|
||||
ResourceManager.pheo_fire_door_orange_tex,
|
||||
ResourceManager.pheo_fire_door_yellow_tex,
|
||||
ResourceManager.pheo_fire_door_trefoil_tex
|
||||
};
|
||||
return skins;
|
||||
}
|
||||
|
||||
public int getSkinCount() { return 3; }
|
||||
public int getSkinCount() { return 5; }
|
||||
|
||||
@Override public int timeToOpen() { return 160; }
|
||||
@Override public int[][] getDoorOpenRanges() { return new int[][] { { -1, 0, 0, 3, 4, 1 } }; }
|
||||
@ -311,12 +313,14 @@ public abstract class DoorDecl {
|
||||
@Override public ResourceLocation[] getSEDNASkins() {
|
||||
if(skins == null) skins = new ResourceLocation[] {
|
||||
ResourceManager.pheo_secure_door_tex,
|
||||
ResourceManager.pheo_secure_door_grey_tex
|
||||
ResourceManager.pheo_secure_door_grey_tex,
|
||||
ResourceManager.pheo_secure_door_black_tex,
|
||||
ResourceManager.pheo_secure_door_yellow_tex
|
||||
};
|
||||
return skins;
|
||||
}
|
||||
|
||||
public int getSkinCount() { return 2; }
|
||||
public int getSkinCount() { return 4; }
|
||||
};
|
||||
|
||||
public static final DoorDecl ROUND_AIRLOCK_DOOR = new DoorDecl() {
|
||||
@ -423,12 +427,13 @@ public abstract class DoorDecl {
|
||||
@SideOnly(Side.CLIENT) @Override public ResourceLocation[] getSEDNASkins() {
|
||||
if(skins == null) skins = new ResourceLocation[] {
|
||||
ResourceManager.pheo_containment_door_tex,
|
||||
ResourceManager.pheo_containment_door_trefoil_tex
|
||||
ResourceManager.pheo_containment_door_trefoil_tex,
|
||||
ResourceManager.pheo_containment_door_trefoil_yellow_tex
|
||||
};
|
||||
return skins;
|
||||
}
|
||||
|
||||
@Override public int getSkinCount() { return 2; }
|
||||
@Override public int getSkinCount() { return 3; }
|
||||
|
||||
@Override public int timeToOpen() { return 160; };
|
||||
@Override public int[][] getDoorOpenRanges() { return new int[][] { { -1, 0, 0, 3, 3, 1 } }; }
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user