mirror of
https://github.com/barkeser2002/CatServer.git
synced 2026-09-25 08:39:58 +03:00
29 lines
833 B
Diff
29 lines
833 B
Diff
--- ../src-base/minecraft/net/minecraft/world/storage/DerivedWorldInfo.java
|
|
+++ ../src-work/minecraft/net/minecraft/world/storage/DerivedWorldInfo.java
|
|
@@ -218,13 +218,25 @@
|
|
{
|
|
}
|
|
|
|
+ @Deprecated
|
|
public void setDimensionData(DimensionType dimensionIn, NBTTagCompound compound)
|
|
{
|
|
this.delegate.setDimensionData(dimensionIn, compound);
|
|
}
|
|
|
|
+ @Deprecated
|
|
public NBTTagCompound getDimensionData(DimensionType dimensionIn)
|
|
{
|
|
return this.delegate.getDimensionData(dimensionIn);
|
|
}
|
|
+
|
|
+ public void setDimensionData(int dimensionID, NBTTagCompound compound)
|
|
+ {
|
|
+ this.delegate.setDimensionData(dimensionID, compound);
|
|
+ }
|
|
+
|
|
+ public NBTTagCompound getDimensionData(int dimensionID)
|
|
+ {
|
|
+ return this.delegate.getDimensionData(dimensionID);
|
|
+ }
|
|
}
|