Merge branch 'mc1.18/dev' into mc1.19/dev

This commit is contained in:
PepperCode1 2022-09-28 22:14:33 -07:00
commit be57d096f8
5 changed files with 9 additions and 6 deletions

View file

@ -49,6 +49,7 @@ body:
label: Mod Version label: Mod Version
description: The version of the mod you were using when the bug occured description: The version of the mod you were using when the bug occured
options: options:
- "0.5.0f"
- "0.5.0e" - "0.5.0e"
- "0.5.0d" - "0.5.0d"
- "0.5.0c" - "0.5.0c"

View file

@ -22,7 +22,7 @@ public class CStress extends ConfigBase implements IStressValueProvider {
@Override @Override
protected void registerAll(Builder builder) { protected void registerAll(Builder builder) {
builder.comment("", Comments.su, Comments.impact) builder.comment(".", Comments.su, Comments.impact)
.push("impact"); .push("impact");
BlockStressDefaults.DEFAULT_IMPACTS.forEach((r, i) -> { BlockStressDefaults.DEFAULT_IMPACTS.forEach((r, i) -> {
if (r.getNamespace() if (r.getNamespace()
@ -31,7 +31,7 @@ public class CStress extends ConfigBase implements IStressValueProvider {
}); });
builder.pop(); builder.pop();
builder.comment("", Comments.su, Comments.capacity) builder.comment(".", Comments.su, Comments.capacity)
.push("capacity"); .push("capacity");
BlockStressDefaults.DEFAULT_CAPACITIES.forEach((r, i) -> { BlockStressDefaults.DEFAULT_CAPACITIES.forEach((r, i) -> {
if (r.getNamespace() if (r.getNamespace()

View file

@ -110,11 +110,11 @@ public abstract class ConfigBase {
public void addComments(Builder builder, String... comment) { public void addComments(Builder builder, String... comment) {
if (comment.length > 0) { if (comment.length > 0) {
String[] comments = new String[comment.length + 1]; String[] comments = new String[comment.length + 1];
comments[0] = " "; comments[0] = ".";
System.arraycopy(comment, 0, comments, 1, comment.length); System.arraycopy(comment, 0, comments, 1, comment.length);
builder.comment(comments); builder.comment(comments);
} else } else
builder.comment(" "); builder.comment(".");
} }
public void register(ForgeConfigSpec.Builder builder) { public void register(ForgeConfigSpec.Builder builder) {

View file

@ -204,11 +204,13 @@ public abstract class FluidIngredient implements Predicate<FluidStack> {
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
@Override @Override
protected boolean testInternal(FluidStack t) { protected boolean testInternal(FluidStack t) {
if (tag == null) if (tag == null) {
for (FluidStack accepted : getMatchingFluidStacks()) for (FluidStack accepted : getMatchingFluidStacks())
if (accepted.getFluid() if (accepted.getFluid()
.isSame(t.getFluid())) .isSame(t.getFluid()))
return true; return true;
return false;
}
return t.getFluid().is(tag); return t.getFluid().is(tag);
} }

View file

@ -192,7 +192,7 @@ public enum AllPackets {
; ;
public static final ResourceLocation CHANNEL_NAME = Create.asResource("main"); public static final ResourceLocation CHANNEL_NAME = Create.asResource("main");
public static final int NETWORK_VERSION = 1; public static final int NETWORK_VERSION = 2;
public static final String NETWORK_VERSION_STR = String.valueOf(NETWORK_VERSION); public static final String NETWORK_VERSION_STR = String.valueOf(NETWORK_VERSION);
public static SimpleChannel channel; public static SimpleChannel channel;