Skip to content

Commit 31b3d19

Browse files
committed
Finally fixed craftguide compat
1 parent 8a7520b commit 31b3d19

197 files changed

Lines changed: 308 additions & 273 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

_VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.4
1+
0.2.6

build_stats.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
; Stats tracked as of version 0.0.9
2-
TotalBuilds=1217
3-
TotalRuns=1091
4-
SuccessRuns=744
5-
FailedRuns=347
6-
TotalReleases=126
7-
SuccessReleases=107
8-
FailedReleases=19
2+
TotalBuilds=1242
3+
TotalRuns=1105
4+
SuccessRuns=748
5+
FailedRuns=357
6+
TotalReleases=137
7+
SuccessReleases=117
8+
FailedReleases=20
99
; Build times tracked as of version 0.2.2
10-
PrevReleaseBuildTime=00:06:12.13
10+
PrevReleaseBuildTime=00:06:24.06

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ archives_base_name = zero_btw_addon_test
1010

1111
org.gradle.jvmargs=-Xmx4g
1212
org.gradle.daemon=false
13-
mod_version = 0.2.4
13+
mod_version = 0.2.6

server.bat

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
@echo off
2+
call preprocess.bat
3+
if %ERRORLEVEL% EQU 0 (
4+
set "JAVA_HOME=C:/Program Files/Java/jre1.8.0_191"
5+
REM set "JAVA_HOME=F:/My Programs Expansion/Java/jdk-17.0.5_windows-x64_bin/jdk-17.0.5"
6+
REM "%JAVA_HOME%/bin/java" -XX:+UnlockDiagnosticVMOptions -XX:+PrintFlagsFinal -version>java_flags.txt
7+
::set JDK_JAVA_OPTIONS
8+
call gradlew.bat runServer
9+
)
10+
build_stats_manager.bat 1 %ERRORLEVEL%
11+
exit /b %ERRORLEVEL%

server_log.bat

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
@echo off
2+
3+
setlocal
4+
5+
set "GRADLE_OPTS=-Dmixin.debug.export=true"
6+
7+
server.bat >trash_server_output.txt 2>trash_server_errors.txt
8+
9+
endlocal

server_quiet.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@echo off
2+
3+
server.bat >NUL

src/main/java/zero/test/GenericBlockRenderer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
import zero.test.IBlockRedstoneLogicMixins;
3535
//import zero.test.mixin.IRenderBlocksAccessMixins;
3636
import zero.test.IRenderBlocksMixins;
37-
// Block piston reactions
3837
//#define getInputSignal(...) func_94482_f(__VA_ARGS__)
3938
public class GenericBlockRenderer {
4039
private static RenderBlocks renderBlocks = new RenderBlocks();

src/main/java/zero/test/IBaseRailBlockMixins.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package zero.test;
22
import net.minecraft.src.*;
3-
// Block piston reactions
43
public interface IBaseRailBlockMixins {
54
default public double getRailMaxSpeedFactor() {
65
return 1.0D;

src/main/java/zero/test/IBlockEntityPistonMixins.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package zero.test;
22
import net.minecraft.src.*;
33
import java.util.List;
4-
// Block piston reactions
54

65
public interface IBlockEntityPistonMixins {
76
public long getLastTicked();

src/main/java/zero/test/IBlockMixins.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import net.fabricmc.api.EnvType;
88
import net.fabricmc.api.Environment;
99
import java.util.List;
10-
// Block piston reactions
1110

1211
public interface IBlockMixins {
1312
// Whether or not the block should have onNeighborBlockChange

0 commit comments

Comments
 (0)