Merge remote-tracking branch 'upstream/master'
This commit is contained in:
@@ -115,7 +115,7 @@ public class CommonTickHandler implements ITickHandler
|
|||||||
blockID = worldObj.getBlockId(x, y, z);
|
blockID = worldObj.getBlockId(x, y, z);
|
||||||
|
|
||||||
}
|
}
|
||||||
while(blockID == mod_pocketDim.blockDimWall.blockID&&y>0)
|
while((blockID == mod_pocketDim.blockDimWall.blockID||blockID == mod_pocketDim.blockDimWallPerm.blockID)&&y>0)
|
||||||
{
|
{
|
||||||
y--;
|
y--;
|
||||||
blockID = worldObj.getBlockId(x, y, z);
|
blockID = worldObj.getBlockId(x, y, z);
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ public class BlockDimWall extends Block
|
|||||||
public void registerIcons(IconRegister par1IconRegister)
|
public void registerIcons(IconRegister par1IconRegister)
|
||||||
{
|
{
|
||||||
this.blockIcon[0] = par1IconRegister.registerIcon(mod_pocketDim.modid + ":" + this.getUnlocalizedName2());
|
this.blockIcon[0] = par1IconRegister.registerIcon(mod_pocketDim.modid + ":" + this.getUnlocalizedName2());
|
||||||
this.blockIcon[1] = par1IconRegister.registerIcon(mod_pocketDim.modid + ":" + this.getUnlocalizedName2() + "perm");
|
this.blockIcon[1] = par1IconRegister.registerIcon(mod_pocketDim.modid + ":" + this.getUnlocalizedName2() + "Perm");
|
||||||
}
|
}
|
||||||
|
|
||||||
@SideOnly(Side.CLIENT)
|
@SideOnly(Side.CLIENT)
|
||||||
|
|||||||
@@ -335,6 +335,8 @@ public class DungeonHelper
|
|||||||
simpleHalls.add(new DungeonGenerator(50, "/schematics/SimpleHall_SK-RightDownStairs_Open_50.schematic", true));
|
simpleHalls.add(new DungeonGenerator(50, "/schematics/SimpleHall_SK-RightDownStairs_Open_50.schematic", true));
|
||||||
simpleHalls.add(new DungeonGenerator(50, "/schematics/SimpleHall_SK-RightUpPath_Open_50.schematic", true));
|
simpleHalls.add(new DungeonGenerator(50, "/schematics/SimpleHall_SK-RightUpPath_Open_50.schematic", true));
|
||||||
simpleHalls.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/SimpleHall_SK-SpiralHallway_Open_100.schematic", true));
|
simpleHalls.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/SimpleHall_SK-SpiralHallway_Open_100.schematic", true));
|
||||||
|
simpleHalls.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/complexHall_largeBrokenHall_closed_100.schematic", false));
|
||||||
|
|
||||||
|
|
||||||
complexHalls.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/tntPuzzleTrap.schematic", false));
|
complexHalls.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/tntPuzzleTrap.schematic", false));
|
||||||
complexHalls.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/brokenPillarsO.schematic", true));
|
complexHalls.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/brokenPillarsO.schematic", true));
|
||||||
@@ -365,12 +367,14 @@ public class DungeonHelper
|
|||||||
pistonTraps.add(new DungeonGenerator(2 * DEFAULT_DUNGEON_WEIGHT, "/schematics/pistonFloorHall.schematic", false));
|
pistonTraps.add(new DungeonGenerator(2 * DEFAULT_DUNGEON_WEIGHT, "/schematics/pistonFloorHall.schematic", false));
|
||||||
pistonTraps.add(new DungeonGenerator(2 * DEFAULT_DUNGEON_WEIGHT, "/schematics/wallFallcomboPistonHall.schematic", false));
|
pistonTraps.add(new DungeonGenerator(2 * DEFAULT_DUNGEON_WEIGHT, "/schematics/wallFallcomboPistonHall.schematic", false));
|
||||||
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/fakeTNTTrap.schematic", false));
|
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/fakeTNTTrap.schematic", false));
|
||||||
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/pistonFallRuins.schematic", false));
|
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/pistonFallRuins.schematic", true));
|
||||||
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/pistonSmasherHall.schematic", false));
|
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/pistonSmasherHall.schematic", false));
|
||||||
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/simpleDropHall.schematic", false));
|
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/simpleDropHall.schematic", false));
|
||||||
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/fallingTNThall.schematic", false));
|
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/fallingTNThall.schematic", false));
|
||||||
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/lavaPyramid.schematic", true));
|
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/lavaPyramid.schematic", true));
|
||||||
pistonTraps.add(new DungeonGenerator(10, "/schematics/Trap_SK-RestlessCorridor_Open_10.schematic", true));
|
pistonTraps.add(new DungeonGenerator(10, "/schematics/Trap_SK-RestlessCorridor_Open_10.schematic", true));
|
||||||
|
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/trap_pistonFloorPlatform_closed_100.schematic", false));
|
||||||
|
pistonTraps.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT/2, "/schematics/trap_pistonFloorPlatform2_closed_100.schematic", false));
|
||||||
|
|
||||||
mazes.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/smallMaze1.schematic", false));
|
mazes.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/smallMaze1.schematic", false));
|
||||||
mazes.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/smallMultilevelMaze.schematic", false));
|
mazes.add(new DungeonGenerator(DEFAULT_DUNGEON_WEIGHT, "/schematics/smallMultilevelMaze.schematic", false));
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ channels={"DimDoorPackets"}, packetHandler = PacketHandler.class, connectionHand
|
|||||||
|
|
||||||
public class mod_pocketDim
|
public class mod_pocketDim
|
||||||
{
|
{
|
||||||
public static final String version = "1.5.2R1.4.0RC1";
|
public static final String version = "1.5.2R1.4.1RC1";
|
||||||
public static final String modid = "DimDoors";
|
public static final String modid = "DimDoors";
|
||||||
|
|
||||||
//need to clean up
|
//need to clean up
|
||||||
@@ -211,7 +211,7 @@ public class mod_pocketDim
|
|||||||
GameRegistry.registerBlock(blockDimWallPerm, "Fabric of RealityPerm");
|
GameRegistry.registerBlock(blockDimWallPerm, "Fabric of RealityPerm");
|
||||||
GameRegistry.registerBlock(transientDoor, "transientDoor");
|
GameRegistry.registerBlock(transientDoor, "transientDoor");
|
||||||
|
|
||||||
GameRegistry.registerBlock(blockDimWall, ItemBlockDimWall.class, "Fablic of Reality");
|
GameRegistry.registerBlock(blockDimWall, ItemBlockDimWall.class, "Fabric of Reality");
|
||||||
|
|
||||||
GameRegistry.registerPlayerTracker(tracker);
|
GameRegistry.registerPlayerTracker(tracker);
|
||||||
|
|
||||||
@@ -441,4 +441,4 @@ public class mod_pocketDim
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
27
build.xml
27
build.xml
@@ -155,22 +155,21 @@
|
|||||||
</copy> -->
|
</copy> -->
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="download-forge" depends="download-ant-contrib" unless="forge-exists">
|
<target name="download-forge" depends="download-ant-contrib" unless="forge-exists">
|
||||||
<taskdef resource="net/sf/antcontrib/antlib.xml">
|
<taskdef resource="net/sf/antcontrib/antlib.xml">
|
||||||
<classpath>
|
<classpath>
|
||||||
<pathelement location="${download.dir}/ant-contrib/ant-contrib-1.0b3.jar"/>
|
<pathelement location="${download.dir}/ant-contrib/ant-contrib-1.0b3.jar"/>
|
||||||
<fileset dir="${download.dir}/ant-contrib/lib">
|
<fileset dir="${download.dir}/ant-contrib/lib">
|
||||||
<include name="*.jar"/>
|
<include name="*.jar"/>
|
||||||
</fileset>
|
</fileset>
|
||||||
</classpath>
|
</classpath>
|
||||||
</taskdef>
|
</taskdef>
|
||||||
<echo message="Downloading forge... " />
|
<echo message="Downloading forge... " />
|
||||||
<getMethod url="http://files.minecraftforge.net/minecraftforge-src-${forge.version}.zip"
|
<get src="${forge.url}" dest="${download.dir}/minecraftforge-src-${forge.version}.zip" />
|
||||||
responseDataFile="${download.dir}/minecraftforge-src-${forge.version}.zip">
|
|
||||||
<header name="User-Agent" value="Ant-${ant.version}/${ant.java.version}"/>
|
|
||||||
</getMethod>
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<target name="download-ant-contrib" unless="should-download-ant-contrib">
|
<target name="download-ant-contrib" unless="should-download-ant-contrib">
|
||||||
<echo message="Getting: ant-contrib"/>
|
<echo message="Getting: ant-contrib"/>
|
||||||
<mkdir dir="${download.dir}/tmp"/>
|
<mkdir dir="${download.dir}/tmp"/>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"modid": "DimDoors",
|
"modid": "DimDoors",
|
||||||
"name": "Dimensional Doors",
|
"name": "Dimensional Doors",
|
||||||
"description": "Bend and twist reality itself, creating pocket dimensions, rifts, and much more",
|
"description": "Bend and twist reality itself, creating pocket dimensions, rifts, and much more",
|
||||||
"version": "1.5.2R1.4.0RC1",
|
"version": "1.5.2R1.4.1RC1",
|
||||||
"credits": "Created by StevenRS11, Coded by StevenRS11 and SenseiKiwi, Logo and Testing by Jaitsu",
|
"credits": "Created by StevenRS11, Coded by StevenRS11 and SenseiKiwi, Logo and Testing by Jaitsu",
|
||||||
"logoFile": "/dimdoors_logo.png",
|
"logoFile": "/dimdoors_logo.png",
|
||||||
"mcversion": "",
|
"mcversion": "",
|
||||||
|
|||||||
BIN
schematics/complexHall_largeBrokenHall_closed_100.schematic
Normal file
BIN
schematics/complexHall_largeBrokenHall_closed_100.schematic
Normal file
Binary file not shown.
BIN
schematics/trap_pistonFloorPlatform2_closed_100.schematic
Normal file
BIN
schematics/trap_pistonFloorPlatform2_closed_100.schematic
Normal file
Binary file not shown.
BIN
schematics/trap_pistonFloorPlatform_closed_100.schematic
Normal file
BIN
schematics/trap_pistonFloorPlatform_closed_100.schematic
Normal file
Binary file not shown.
Reference in New Issue
Block a user