Skip to content

Commit

Permalink
Merge pull request #933 from VolmitSoftware/Development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
NextdoorPsycho authored Nov 30, 2022
2 parents 5f2b82a + f0f7453 commit 87302a0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
id "de.undercouch.download" version "5.0.1"
}

version '2.3.8-1.19.2' // Needs to be version specific
version '2.3.9-1.19.2' // Needs to be version specific
def nmsVersion = "1.19.2" //[NMS]
def apiVersion = '1.19'
def specialSourceVersion = '1.11.0' //[NMS]
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/volmit/iris/Iris.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
@SuppressWarnings("CanBeFinal")
public class Iris extends VolmitPlugin implements Listener {

public static final String OVERWORLD_TAG = "2091";
public static final String OVERWORLD_TAG = "2092";

private static final Queue<Runnable> syncJobs = new ShurikenQueue<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public String onRequest(OfflinePlayer player, String p) {
Location l = null;
PlatformChunkGenerator a = null;

if (player.isOnline()) {
l = player.getPlayer().getLocation();
if (player.isOnline() && player.getPlayer() != null) {
l = player.getPlayer().getLocation().add(0, 2, 0);
a = IrisToolbelt.access(l.getWorld());
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/volmit/iris/engine/object/IrisBiome.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class IrisBiome extends IrisRegistrant implements IRare {
@MinNumber(2)
@Required
@Desc("This is the human readable name for this biome. This can and should be different than the file name. This is not used for loading biomes in other objects.")
private String name = "A Biome";
private String name = "Subterranean Land";
@ArrayType(min = 1, type = IrisBiomeCustom.class)
@Desc("If the biome type custom is defined, specify this")
private KList<IrisBiomeCustom> customDerivitives;
Expand Down

0 comments on commit 87302a0

Please sign in to comment.