mirror of
https://github.com/Winds-Studio/Leaf.git
synced 2025-12-19 15:09:25 +00:00
Cooking Tutorial
1. Wet the drys 2. Dry the wets 3. Wet the drys 4. Dry the wets 5. Wet the drys 6. Now dust the wets
This commit is contained in:
@@ -2,7 +2,10 @@
|
|||||||
# See CONTRIBUTING.md on how to add access transformers.
|
# See CONTRIBUTING.md on how to add access transformers.
|
||||||
protected net.minecraft.world.entity.Entity dimensions
|
protected net.minecraft.world.entity.Entity dimensions
|
||||||
protected-f net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase$Cache largeCollisionShape
|
protected-f net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase$Cache largeCollisionShape
|
||||||
|
public net.minecraft.server.players.PlayerList SEND_PLAYER_INFO_INTERVAL
|
||||||
public net.minecraft.util.Mth SIN
|
public net.minecraft.util.Mth SIN
|
||||||
|
public net.minecraft.world.entity.Entity blockPosition
|
||||||
|
public net.minecraft.world.entity.Entity position
|
||||||
public net.minecraft.world.entity.Entity updateInWaterStateAndDoWaterCurrentPushing()V
|
public net.minecraft.world.entity.Entity updateInWaterStateAndDoWaterCurrentPushing()V
|
||||||
public net.minecraft.world.entity.LivingEntity canGlide()Z
|
public net.minecraft.world.entity.LivingEntity canGlide()Z
|
||||||
public net.minecraft.world.entity.ai.memory.NearestVisibleLivingEntities lineOfSightTest
|
public net.minecraft.world.entity.ai.memory.NearestVisibleLivingEntities lineOfSightTest
|
||||||
@@ -12,11 +15,13 @@ public net.minecraft.world.entity.monster.Shulker MAX_SCALE
|
|||||||
public net.minecraft.world.entity.player.Player canGlide()Z
|
public net.minecraft.world.entity.player.Player canGlide()Z
|
||||||
public net.minecraft.world.item.CrossbowItem getShotPitch(Lnet/minecraft/util/RandomSource;I)F
|
public net.minecraft.world.item.CrossbowItem getShotPitch(Lnet/minecraft/util/RandomSource;I)F
|
||||||
public net.minecraft.world.level.block.entity.FuelValues values
|
public net.minecraft.world.level.block.entity.FuelValues values
|
||||||
|
public net.minecraft.world.level.chunk.PaletteResize
|
||||||
public net.minecraft.world.level.chunk.storage.RegionFile getOversizedData(II)Lnet/minecraft/nbt/CompoundTag;
|
public net.minecraft.world.level.chunk.storage.RegionFile getOversizedData(II)Lnet/minecraft/nbt/CompoundTag;
|
||||||
public net.minecraft.world.level.chunk.storage.RegionFile isOversized(II)Z
|
public net.minecraft.world.level.chunk.storage.RegionFile isOversized(II)Z
|
||||||
public net.minecraft.world.level.chunk.storage.RegionFile recalculateHeader()Z
|
public net.minecraft.world.level.chunk.storage.RegionFile recalculateHeader()Z
|
||||||
public net.minecraft.world.level.chunk.storage.RegionFile setOversized(IIZ)V
|
public net.minecraft.world.level.chunk.storage.RegionFile setOversized(IIZ)V
|
||||||
public net.minecraft.world.level.chunk.storage.RegionFile write(Lnet/minecraft/world/level/ChunkPos;Ljava/nio/ByteBuffer;)V
|
public net.minecraft.world.level.chunk.storage.RegionFile write(Lnet/minecraft/world/level/ChunkPos;Ljava/nio/ByteBuffer;)V
|
||||||
|
public net.minecraft.world.level.levelgen.structure.PoolElementStructurePiece LOGGER
|
||||||
public net.minecraft.world.level.material.FlowingFluid canHoldAnyFluid(Lnet/minecraft/world/level/block/state/BlockState;)Z
|
public net.minecraft.world.level.material.FlowingFluid canHoldAnyFluid(Lnet/minecraft/world/level/block/state/BlockState;)Z
|
||||||
public net.minecraft.world.level.pathfinder.SwimNodeEvaluator allowBreaching
|
public net.minecraft.world.level.pathfinder.SwimNodeEvaluator allowBreaching
|
||||||
public-f net.minecraft.world.entity.EntityType dimensions
|
public-f net.minecraft.world.entity.EntityType dimensions
|
||||||
|
|||||||
@@ -65,7 +65,6 @@ subprojects {
|
|||||||
|
|
||||||
paperweight {
|
paperweight {
|
||||||
upstreams.paper {
|
upstreams.paper {
|
||||||
repo = github("Dreeam-qwq", "Paper")
|
|
||||||
ref = providers.gradleProperty("paperCommit")
|
ref = providers.gradleProperty("paperCommit")
|
||||||
|
|
||||||
patchFile {
|
patchFile {
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ group=cn.dreeam.leaf
|
|||||||
mcVersion=1.21.5
|
mcVersion=1.21.5
|
||||||
version=1.21.5-R0.1-SNAPSHOT
|
version=1.21.5-R0.1-SNAPSHOT
|
||||||
|
|
||||||
paperCommit=bf0a1298ec5172d9ea46a4ff4670a615aae013c7
|
paperCommit=ce91a8ca123f4e853629d08705e4ece3a09a5a4d
|
||||||
|
|
||||||
org.gradle.configuration-cache=true
|
org.gradle.configuration-cache=true
|
||||||
org.gradle.caching=true
|
org.gradle.caching=true
|
||||||
|
|||||||
@@ -88,15 +88,15 @@
|
|||||||
+ // Leaf end - Bump Dependencies
|
+ // Leaf end - Bump Dependencies
|
||||||
}
|
}
|
||||||
|
|
||||||
-val generatedApiPath: java.nio.file.Path = layout.projectDirectory.dir("src/generated/java").asFile.toPath()
|
-val generatedDir: java.nio.file.Path = layout.projectDirectory.dir("src/generated/java").asFile.toPath()
|
||||||
+val generatedApiPath: java.nio.file.Path = rootProject.layout.projectDirectory.dir("paper-api/src/generated/java").asFile.toPath() // Leaf - project setup
|
+val generatedDir: java.nio.file.Path = rootProject.layout.projectDirectory.dir("paper-api/src/generated/java").asFile.toPath() // Leaf - project setup
|
||||||
idea {
|
idea {
|
||||||
module {
|
module {
|
||||||
generatedSourceDirs.add(generatedApiPath.toFile())
|
generatedSourceDirs.add(generatedDir.toFile())
|
||||||
@@ -103,6 +_,20 @@
|
@@ -103,6 +_,20 @@
|
||||||
main {
|
main {
|
||||||
java {
|
java {
|
||||||
srcDir(generatedApiPath)
|
srcDir(generatedDir)
|
||||||
+ // Leaf start - project setup
|
+ // Leaf start - project setup
|
||||||
+ srcDir(file("../paper-api/src/main/java"))
|
+ srcDir(file("../paper-api/src/main/java"))
|
||||||
+ }
|
+ }
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
tasks.test {
|
tasks.test {
|
||||||
@@ -243,6 +_,11 @@
|
@@ -233,6 +_,11 @@
|
||||||
jarToScan.set(tasks.jar.flatMap { it.archiveFile })
|
jarToScan.set(tasks.jar.flatMap { it.archiveFile })
|
||||||
classpath.from(configurations.compileClasspath)
|
classpath.from(configurations.compileClasspath)
|
||||||
}
|
}
|
||||||
@@ -202,5 +202,5 @@
|
|||||||
+}
|
+}
|
||||||
+// Leaf end - Bump Dependencies
|
+// Leaf end - Bump Dependencies
|
||||||
tasks.check {
|
tasks.check {
|
||||||
dependsOn(scanJarForOldGeneratedCode)
|
dependsOn(scanJarForBadCalls)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ From: Dreeam <61569423+Dreeam-qwq@users.noreply.github.com>
|
|||||||
Date: Tue, 21 May 2024 11:43:49 +0800
|
Date: Tue, 21 May 2024 11:43:49 +0800
|
||||||
Subject: [PATCH] Rebrand
|
Subject: [PATCH] Rebrand
|
||||||
|
|
||||||
This patch is based on the following patch:
|
This patch is referring to the following patch:
|
||||||
"Gale branding changes"
|
"Gale branding changes"
|
||||||
By: Martijn Muijsers <martijnmuijsers@live.nl>
|
By: Martijn Muijsers <martijnmuijsers@live.nl>
|
||||||
As part of: GaleMC (https://github.com/GaleMC/Gale)
|
As part of: GaleMC (https://github.com/GaleMC/Gale)
|
||||||
|
|||||||
@@ -110,19 +110,19 @@ index 0000000000000000000000000000000000000000..00b16e4aacba50996b81fac81c3f78b6
|
|||||||
+
|
+
|
||||||
+}
|
+}
|
||||||
diff --git a/src/main/java/org/bukkit/map/MapPalette.java b/src/main/java/org/bukkit/map/MapPalette.java
|
diff --git a/src/main/java/org/bukkit/map/MapPalette.java b/src/main/java/org/bukkit/map/MapPalette.java
|
||||||
index 6995f9cc08d162e3adcd3a28f6bfa6d329661999..844ad65edd5ac9eb7ccce08905972ad0ba18ea69 100644
|
index fc9728342de7605da69813fb44b008c1343124c0..4d55f8ece0bbe0be64b700f54a52d6a2cbfad9a5 100644
|
||||||
--- a/src/main/java/org/bukkit/map/MapPalette.java
|
--- a/src/main/java/org/bukkit/map/MapPalette.java
|
||||||
+++ b/src/main/java/org/bukkit/map/MapPalette.java
|
+++ b/src/main/java/org/bukkit/map/MapPalette.java
|
||||||
@@ -45,7 +45,7 @@ public final class MapPalette {
|
@@ -35,7 +35,7 @@ public final class MapPalette {
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
- static final Color[] colors = {
|
- static final Color[] colors = {
|
||||||
+ public static final Color[] colors = { // Gale - Pufferfish - vectorized map color conversion - package -> public
|
+ public static final Color[] colors = { // Gale - Pufferfish - vectorized map color conversion - package -> public
|
||||||
c(0, 0, 0, 0), c(0, 0, 0, 0), c(0, 0, 0, 0), c(0, 0, 0, 0),
|
// Start generate - MapPalette#colors
|
||||||
c(89, 125, 39), c(109, 153, 48), c(127, 178, 56), c(67, 94, 29),
|
// @GeneratedFrom 1.21.5
|
||||||
c(174, 164, 115), c(213, 201, 140), c(247, 233, 163), c(130, 123, 86),
|
new Color(0x00000000, true),
|
||||||
@@ -216,9 +216,15 @@ public final class MapPalette {
|
@@ -395,9 +395,15 @@ public final class MapPalette {
|
||||||
temp.getRGB(0, 0, temp.getWidth(), temp.getHeight(), pixels, 0, temp.getWidth());
|
temp.getRGB(0, 0, temp.getWidth(), temp.getHeight(), pixels, 0, temp.getWidth());
|
||||||
|
|
||||||
byte[] result = new byte[temp.getWidth() * temp.getHeight()];
|
byte[] result = new byte[temp.getWidth() * temp.getHeight()];
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user