mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-07-24 04:42:52 +00:00
Bump version and require a minimum version of Forge
This commit is contained in:
parent
93cb6547bd
commit
1160ffbf9e
@ -23,7 +23,7 @@ apply plugin: 'org.ajoberstar.grgit'
|
|||||||
apply plugin: 'maven-publish'
|
apply plugin: 'maven-publish'
|
||||||
apply plugin: 'maven'
|
apply plugin: 'maven'
|
||||||
|
|
||||||
version = "1.80pr1.10"
|
version = "1.80pr1.11"
|
||||||
group = "org.squiddev"
|
group = "org.squiddev"
|
||||||
archivesBaseName = "cc-tweaked"
|
archivesBaseName = "cc-tweaked"
|
||||||
|
|
||||||
|
@ -111,7 +111,8 @@ import java.util.zip.ZipFile;
|
|||||||
|
|
||||||
@Mod(
|
@Mod(
|
||||||
modid = ComputerCraft.MOD_ID, name = "CC: Tweaked", version = "${version}",
|
modid = ComputerCraft.MOD_ID, name = "CC: Tweaked", version = "${version}",
|
||||||
guiFactory = "dan200.computercraft.client.gui.GuiConfigCC$Factory"
|
guiFactory = "dan200.computercraft.client.gui.GuiConfigCC$Factory",
|
||||||
|
dependencies = "required:forge@[14.23.4.2746,)"
|
||||||
)
|
)
|
||||||
public class ComputerCraft
|
public class ComputerCraft
|
||||||
{
|
{
|
||||||
@ -569,7 +570,7 @@ public class ComputerCraft
|
|||||||
width = terminal.getWidth();
|
width = terminal.getWidth();
|
||||||
height = terminal.getHeight();
|
height = terminal.getHeight();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pack useful terminal information into the various coordinate bits.
|
// Pack useful terminal information into the various coordinate bits.
|
||||||
// These are extracted in ComputerCraftProxyCommon.getClientGuiElement
|
// These are extracted in ComputerCraftProxyCommon.getClientGuiElement
|
||||||
player.openGui( ComputerCraft.instance, ComputerCraft.viewComputerGUIID, player.getEntityWorld(),
|
player.openGui( ComputerCraft.instance, ComputerCraft.viewComputerGUIID, player.getEntityWorld(),
|
||||||
@ -1112,7 +1113,7 @@ public class ComputerCraft
|
|||||||
{
|
{
|
||||||
return turtleProxy.getTurtleUpgrade( id );
|
return turtleProxy.getTurtleUpgrade( id );
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ITurtleUpgrade getTurtleUpgrade( int legacyID )
|
public static ITurtleUpgrade getTurtleUpgrade( int legacyID )
|
||||||
{
|
{
|
||||||
return turtleProxy.getTurtleUpgrade( legacyID );
|
return turtleProxy.getTurtleUpgrade( legacyID );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user