Skip to content

Commit ee95fc4

Browse files
committed
Updated the mod showcase and bridge reference
1 parent ca98cf5 commit ee95fc4

File tree

8 files changed

+8
-42
lines changed

8 files changed

+8
-42
lines changed

.idea/workspace.xml

Lines changed: 0 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ buildscript {
77
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
88
}
99
}
10-
plugins {
11-
id "java"
12-
id "com.github.johnrengelman.shadow" version "2.0.2"
13-
}
1410
apply plugin: 'net.minecraftforge.gradle.forge'
1511

1612
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
@@ -47,7 +43,7 @@ dependencies {
4743
// https://mvnrepository.com/artifact/net.sf.jni4net/jni4net.j
4844
compile group: 'net.sf.jni4net', name: 'jni4net.j', version: '0.8.8.0', ext: 'pom'
4945
compile 'org.apache.commons:commons-lang3:3.5'
50-
compile name: 'logitow-bridge-0.3-all'
46+
compile name: 'logitow-bridge-0.9-all'
5147

5248
// you may put jars on which you depend on in ./libs
5349
// or you may define them like so..

libs/logitow-bridge-0.3-all.jar

-16.8 MB
Binary file not shown.

src/main/java/com/logitow/logimine/blocks/BlockKey.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public void onBlockDestroyedByPlayer(World worldIn, BlockPos pos, IBlockState st
116116
if(!keyblock.getWorld().isRemote) {
117117
//Deleting structures file.
118118
if(keyblock.getAssignedStructure() != null) {
119-
if(keyblock.getAssignedStructure().customName == null) {
119+
if(keyblock.getAssignedStructure().customName == null || keyblock.getAssignedStructure().customName == "") {
120120
Structure.removeFile(keyblock.getAssignedStructure());
121121
}
122122
keyblock.clearStructure();
180 KB
Loading
Loading
Loading

src/main/resources/mcmod.info

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
{
33
"modid": "logimine",
44
"name": "LogiMine",
5-
"description": "Brings LOGITOW support to Minecraft",
5+
"description": "Brings Logitow Smart Blocks support to Minecraft",
66
"version": "${version}",
77
"mcversion": "${mcversion}",
8-
"url": "",
8+
"url": "http://logitow.com/",
99
"updateUrl": "",
10-
"authorList": ["itsMatoosh", "Acrogenous A.K.A acrominer"],
11-
"credits": "The logitow team in China",
12-
"logoFile": "",
13-
"screenshots": [],
10+
"authorList": ["Mateusz "itsMatoosh" Rebacz"],
11+
"credits": "Paracra Technology Co., Ltd",
12+
"logoFile": "assets/logimine/icon.png",
13+
"screenshots": ["assets/logimine/showcase/sc1.jpg","assets/logimine/showcase/sc2.jpg"],
1414
"dependencies": []
1515
}
1616
]

0 commit comments

Comments
 (0)