Skip to content

Commit

Permalink
Update 1.0.1
Browse files Browse the repository at this point in the history
Fixed model of Molten Gravitite, tweaked a few things
  • Loading branch information
Shnupbups committed Jun 24, 2018
1 parent 99b65bf commit 9fa9233
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.


version = "1.0"
version = "1.0.1"
group = "shnupbups.tinkersaether" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "tinkersaether"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/shnupbups/tinkersaether/TinkersAether.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
public class TinkersAether {
public static final String modid = "tinkersaether";
public static final String name = "MoreTiC";
public static final String version = "1.0.0";
public static final String version = "1.0.1";

@Mod.Instance(modid)
public static TinkersAether instance;
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/shnupbups/tinkersaether/proxy/ClientProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,15 @@ public <T extends Item & IToolPart> void registerToolPartModel(T part) {
public void initToolGuis() {
if (ModuleTools.dartShooter != null) {
ToolBuildGuiInfo dartShooterInfo = new ToolBuildGuiInfo(ModuleTools.dartShooter);
dartShooterInfo.addSlotPosition(32 - 9, 41);
dartShooterInfo.addSlotPosition(32 + 9, 41);
dartShooterInfo.addSlotPosition(32 - 9, 41 - 9);
dartShooterInfo.addSlotPosition(32 + 9, 41 + 9);
TinkerRegistryClient.addToolBuilding(dartShooterInfo);
}
if (ModuleTools.dart != null) {
ToolBuildGuiInfo dartInfo = new ToolBuildGuiInfo(ModuleTools.dart);
dartInfo.addSlotPosition(32, 41);
dartInfo.addSlotPosition(32 + 18, 41 - 18);
dartInfo.addSlotPosition(32 - 18, 41 + 18);
dartInfo.addSlotPosition(32 - 18, 41 - 18);
dartInfo.addSlotPosition(32 + 18, 41 + 18);
TinkerRegistryClient.addToolBuilding(dartInfo);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"model": "forge:fluid"
},
"variants": {
"moretic_gravitite": [{
"custom": { "fluid": "moretic_gravitite" }
"gravitite": [{
"custom": { "fluid": "gravitite" }
}]
}
}
8 changes: 4 additions & 4 deletions src/main/resources/assets/tinkersaether/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ item.mouthpiece.name=Mouthpiece
item.dart_tip.name=Dart Tip

modifier.antigrav.name=Antigravity
modifier.antigrav.desc=§oScrew gravity§r\nMake effective blocks float when you shift+rclick, using 4 durability.
modifier.antigrav.desc=§oScrew gravity!§r\nMake effective blocks float when you shift+rclick, using 4 durability.
modifier.launching.name=Launching
modifier.launching.desc=§oUppercut!§r\nLaunches attacked creatures high into the air.
modifier.enlightened.name=Enlightened
modifier.enlightened.desc=§oThe gods' favourite snack§r\nGrants a 5% chance for blocks to drop Ambrosium shards.
modifier.enlightened.desc=§oThe gods' favourite snack.§r\nGrants a 5% chance for blocks to drop Ambrosium shards.
modifier.rooted.name=Rooted
modifier.rooted.desc=§oFirst ones double§r\nExtra drops from naturally generated Aether blocks.
modifier.rooted.desc=§oFirst ones double.§r\nExtra drops from naturally generated Aether blocks.
modifier.zany.name=Zany
modifier.zany.desc=§oEntropy powered speed§r\nThe tool mines considerably faster as it wears out.
modifier.zany.desc=§oEntropy powered speed.§r\nThe tool mines considerably faster as it wears out.
modifier.zany.extra=Zany Speed: x%s
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "tinkersaether",
"name": "Tinker's Aether",
"description": "Adds Aether materials and stuff to Tinker's Construct.",
"version": "1.0",
"version": "1.0.1",
"mcversion": "${mcversion}",
"url": "",
"updateUrl": "",
Expand Down

0 comments on commit 9fa9233

Please sign in to comment.