Skip to content

Commit

Permalink
removed prints, fixed jsoup, added logo
Browse files Browse the repository at this point in the history
  • Loading branch information
edeetee committed Jun 18, 2019
1 parent bb9c2f9 commit d5ae913
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"**/.DS_Store": true,

"bin": true,
"build": true,
"gradle": true,
".gradle": true,
".settings": true,
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"isDefault": true
},
"type": "shell",
"command": "./gradlew build"
"command": "./gradlew remapJar"
}
]
}
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ minecraft {
}

dependencies {
compile 'org.jsoup:jsoup:1.12.1'
modCompile 'org.jsoup:jsoup:1.12.1'
include 'org.jsoup:jsoup:1.12.1'
//to change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}"
Expand All @@ -23,8 +24,6 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway.
modCompile "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

compile 'net.fabricmc:fabric-installer:+'

// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.
}
Expand Down
1 change: 0 additions & 1 deletion src/main/java/edeetee/pictocraft/Init.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import java.util.List;

import net.fabricmc.api.ClientModInitializer;
import net.fabricmc.api.ModInitializer;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.network.ClientPlayerEntity;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/edeetee/pictocraft/ItemSearch.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static void generateMap(){

String rawId = itemToId(item);
items.putIfAbsent(getName(item), rawId);
System.out.println(getName(item) + ": " + rawId);
// System.out.println(getName(item) + ": " + rawId);
}
}

Expand Down
Binary file modified src/main/resources/assets/modid/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d5ae913

Please sign in to comment.