Skip to content

Commit

Permalink
dev build
Browse files Browse the repository at this point in the history
  • Loading branch information
Greymerk committed Jul 11, 2014
1 parent b12b45e commit 2adcf68
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {

apply plugin: 'forge'

version = "1.7.10-1.3.4"
version = "1.7.10-1.3.4.1"
group= "ca.rivas.roguelike" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "roguelike"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/greymerk/roguelike/Roguelike.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import cpw.mods.fml.common.event.FMLServerStartingEvent;
import cpw.mods.fml.common.registry.GameRegistry;

@Mod(modid="Roguelike", name="Roguelike Dungeons", version="1.3.4")
@Mod(modid="Roguelike", name="Roguelike Dungeons", version="1.3.4.1")

public class Roguelike {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public ThemeNether(){
this.decor = this.walls;

this.segments = new WeightedRandomizer<Segment>();
this.segments.add(new WeightedChoice<Segment>((Segment.SPAWNER), 1));
this.segments.add(new WeightedChoice<Segment>((Segment.SPAWNER), 2));
this.segments.add(new WeightedChoice<Segment>((Segment.CHEST), 1));
this.segments.add(new WeightedChoice<Segment>((Segment.NETHERSTRIPE), 2));
this.segments.add(new WeightedChoice<Segment>((Segment.NETHERWART), 2));
Expand Down
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" : "Roguelike",
"name" : "Roguelike Dungeons",
"description" : "Adds randomized dungeons to the world",
"version" : "1.3.4",
"version" : "1.3.4.1",
"url" : "dungeons.homelinux.org",
"authorList" : ["Greymerk"],
"mcversion" : "1.7.10"
Expand Down

0 comments on commit 2adcf68

Please sign in to comment.