-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
284b844
commit 9fa505a
Showing
50 changed files
with
3,086 additions
and
868 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,5 @@ public interface IBlockInfo { | |
int getX(); | ||
int getY(); | ||
int getZ(); | ||
int getTypeId(); | ||
int getCombinedId(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
API/src/main/java/com/lishid/orebfuscator/types/BlockState.java
This file was deleted.
Oops, something went wrong.
28 changes: 28 additions & 0 deletions
28
API/src/main/java/com/lishid/orebfuscator/types/ConfigDefaults.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/** | ||
* @author Aleksey Terzi | ||
* | ||
*/ | ||
|
||
package com.lishid.orebfuscator.types; | ||
|
||
public class ConfigDefaults { | ||
public int[] defaultProximityHiderBlockIds; | ||
public int[] defaultDarknessBlockIds; | ||
public int defaultMode1BlockId; | ||
public int defaultProximityHiderSpecialBlockId; | ||
|
||
public int[] endWorldRandomBlockIds; | ||
public int[] endWorldObfuscateBlockIds; | ||
public int endWorldMode1BlockId; | ||
public int[] endWorldRequiredObfuscateBlockIds; | ||
|
||
public int[] netherWorldRandomBlockIds; | ||
public int[] netherWorldObfuscateBlockIds; | ||
public int netherWorldMode1BlockId; | ||
public int[] netherWorldRequiredObfuscateBlockIds; | ||
|
||
public int[] normalWorldRandomBlockIds; | ||
public int[] normalWorldObfuscateBlockIds; | ||
public int normalWorldMode1BlockId; | ||
public int[] normalWorldRequiredObfuscateBlockIds; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
Plugin/src/main/java/com/lishid/orebfuscator/NmsInstance.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* @author Aleksey Terzi | ||
* | ||
*/ | ||
|
||
package com.lishid.orebfuscator; | ||
|
||
import com.lishid.orebfuscator.nms.INmsManager; | ||
|
||
public class NmsInstance { | ||
public static INmsManager current; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.