mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-03 21:29:06 +01:00
Merge remote-tracking branch 'origin/mc1.18/dev' into mc1.18/dev
This commit is contained in:
commit
a61739eb1e
2 changed files with 7 additions and 7 deletions
2
.github/workflows/close_issues.yml
vendored
2
.github/workflows/close_issues.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
|||
days-before-issue-stale: 21
|
||||
days-before-issue-close: 21
|
||||
stale-issue-label: "stale"
|
||||
exempt-issue-labels: "timeless, suggestion"
|
||||
exempt-issue-labels: "timeless, suggestion, critical"
|
||||
stale-issue-message: "This issue has been marked as stale because it has been inactive for 3 weeks. It will be closed if it remains inactive for another 3 weeks."
|
||||
close-issue-message: "This issue has been closed since it has been inactive for 3 weeks since it was marked as stale."
|
||||
days-before-pr-stale: -1
|
||||
|
|
|
@ -257,13 +257,13 @@ public class ClientEvents {
|
|||
|
||||
Fluid fluid = fluidstate.getType();
|
||||
|
||||
if (fluid.isSame(AllFluids.CHOCOLATE.get())) {
|
||||
if (AllFluids.CHOCOLATE.get().isSame(fluid)) {
|
||||
event.setDensity(5f);
|
||||
event.setCanceled(true);
|
||||
return;
|
||||
}
|
||||
|
||||
if (fluid.isSame(AllFluids.HONEY.get())) {
|
||||
if (AllFluids.HONEY.get().isSame(fluid)) {
|
||||
event.setDensity(1.5f);
|
||||
event.setCanceled(true);
|
||||
return;
|
||||
|
@ -283,18 +283,18 @@ public class ClientEvents {
|
|||
Level level = Minecraft.getInstance().level;
|
||||
BlockPos blockPos = info.getBlockPosition();
|
||||
FluidState fluidstate = level.getFluidState(blockPos);
|
||||
if (info.getPosition().y > blockPos.getY() + fluidstate.getHeight(level, blockPos))
|
||||
if (info.getPosition().y > blockPos.getY() + fluidstate.getHeight(level, blockPos))
|
||||
return;
|
||||
|
||||
|
||||
Fluid fluid = fluidstate.getType();
|
||||
|
||||
if (fluid.isSame(AllFluids.CHOCOLATE.get())) {
|
||||
if (AllFluids.CHOCOLATE.get().isSame(fluid)) {
|
||||
event.setRed(98 / 256f);
|
||||
event.setGreen(32 / 256f);
|
||||
event.setBlue(32 / 256f);
|
||||
}
|
||||
|
||||
if (fluid.isSame(AllFluids.HONEY.get())) {
|
||||
if (AllFluids.HONEY.get().isSame(fluid)) {
|
||||
event.setRed(234 / 256f);
|
||||
event.setGreen(174 / 256f);
|
||||
event.setBlue(47 / 256f);
|
||||
|
|
Loading…
Reference in a new issue