Skip to content
This repository has been archived by the owner on Jan 8, 2022. It is now read-only.

Commit

Permalink
Remove dependency on NOVA-Team/NOVA-Monorepo#227 + Build script fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ExE-Boss committed Jan 11, 2017
1 parent 534bb03 commit 54a94b8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 19 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
apply from: "https://raw.githubusercontent.com/NOVA-Team/NOVA-Gradle/master/shared-scripts/java.gradle"

dependencies {
nova(nova_version)
compile nova(nova_version)
}

nova {
Expand Down
4 changes: 1 addition & 3 deletions minecraft/1.11/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
group = nova.wordgen

minecraft.version = 1.11
forge.version = 13.19.1.2189
forgeGradleVersion = 2.2-SNAPSHOT

packaging = jar
info.inceptionYear = 2016
info.description = The NOVA-Minecraft Minecraft 1.11 wrapper.
info.description = The NOVA-Worldgen Minecraft 1.11 wrapper.
info.organization.name = NOVA
4 changes: 0 additions & 4 deletions minecraft/1.7/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
version = 0.0.1-SNAPSHOT
group = nova.worldgen.wrapper.mc17

nova.version = 0.1.0-SNAPSHOT
minecraft.version = 1.7.10
forge.version = 10.13.4.1448-1.7.10
forgeGradleVersion = 1.2-SNAPSHOT
Expand Down
4 changes: 0 additions & 4 deletions minecraft/1.8/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
version = 0.0.1-SNAPSHOT
group = nova.worldgen.wrapper.mc18

nova.version = 0.1.0-SNAPSHOT
minecraft.version = 1.8
forge.version = 11.14.3.1491
forgeGradleVersion = 1.2-SNAPSHOT
Expand Down
8 changes: 3 additions & 5 deletions src/main/java/nova/worldgen/Generable.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
*/
package nova.worldgen;

import nova.core.util.id.Identifiable;
import nova.core.util.id.Identifier;
import nova.core.util.id.StringIdentifier;
import nova.core.util.Identifiable;

/**
* This class describes a structure that will be generated
Expand All @@ -23,7 +21,7 @@ public Generable(String id) {
}

@Override
public final Identifier getID() {
return new StringIdentifier(id);
public final String getID() {
return id;
}
}
3 changes: 1 addition & 2 deletions src/main/java/nova/worldgen/ore/Ore.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,13 @@

import nova.core.block.BlockFactory;
import nova.core.util.EnumSelector;
import nova.core.util.id.Identifiable;
import nova.worldgen.Generable;

/**
* This class describes a resource that will be placed in the world
* as an ore by the world generator.
*/
public final class Ore extends Generable implements Identifiable {
public final class Ore extends Generable {
public final BlockFactory block;
public final double rarity;
public final double clusterSize;
Expand Down

0 comments on commit 54a94b8

Please sign in to comment.