Skip to content

Commit

Permalink
Loose ends
Browse files Browse the repository at this point in the history
  • Loading branch information
Vazkii committed Aug 4, 2019
1 parent 26473e6 commit 83bc6fb
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sh gradlew
gradlew.bat
pause
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ dependencies {
processResources {
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
include 'META-INF/mods.toml'

// replace version and mcversion
expand 'version': project.version, 'mcversion': config.mc_version
expand 'version': project.version
}

// copy everything else, thats not the mcmod.info
// copy everything else, thats not the mods.toml
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info', '**/psd/**'
exclude 'META-INF/mods.toml', '**/psd/**'
}
}

Expand Down
4 changes: 2 additions & 2 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#
#Sun Aug 04 02:48:00 BST 2019
#Sun Aug 04 03:07:15 BST 2019
mod_name=Neat
forge_version=28.0.40
mapping_version=20190719-1.14.3
mapping_channel=snapshot
mod_id=neat
version=1.5
dir_output=../Build Output/Neat/
build_number=17
mc_version=1.14.4
build_number=44
2 changes: 0 additions & 2 deletions src/main/java/vazkii/neat/Neat.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ public Neat() {
public void setup(FMLClientSetupEvent event) {
NeatConfig.load();

System.out.println("Neat.setup");

MinecraftForge.EVENT_BUS.register(new ToggleKeybind());
MinecraftForge.EVENT_BUS.register(new HealthBarRenderer());
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ issueTrackerURL="https://github.com/Vazkii/Neat"
[[mods]]
modId="neat"
displayName="Neat"
version="GRADLE:VERSION-GRADLE:BUILD"
version="${version}"
authors="Vazkii"
description='''
Minimalistic Functional Unit Plates for the modern Minecrafter
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/assets/neat/lang/en_US.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"neat.keybind.toggle": "Toggle Health Bars"
}
1 change: 0 additions & 1 deletion src/main/resources/assets/neat/lang/en_US.lang

This file was deleted.

0 comments on commit 83bc6fb

Please sign in to comment.