Skip to content

Instantly share code, notes, and snippets.

View CorgiTaco's full-sized avatar

Corgi Taco CorgiTaco

View GitHub Profile
[30Sep2020 15:47:12.911] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--width, 1920, --height, 1080, --username, Voronoii, --version, 1.16.2, --gameDir, C:\_gdl\instances\BYG x Craft Presence, --assetsDir, C:\_gdl\datastore\assets, --assetIndex, 1.16, --uuid, c6290b3790ec425aa7738ebeb05cfe0d, --accessToken, ????????, --userType, mojang, --versionType, release, --launchTarget, fmlclient, --fml.forgeVersion, 33.0.61, --fml.mcVersion, 1.16.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20200812.004259]
[30Sep2020 15:47:12.915] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 7.0.1+78+master.e9771d8 starting: java version 1.8.0_242 by AdoptOpenJDK
[30Sep2020 15:47:13.455] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust
[30Sep2020 15:47:13.517] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8 Source=file:/C:/_gdl/datastore/libraries/org/spongepowered/mixin/0.8/mix
This file has been truncated, but you can view the full file.
[03Oct2020 11:37:06.255] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--width, 1920, --height, 1080, --username, Voronoii, --version, 1.16.3, --gameDir, C:\_gdl\instances\Yuh, --assetsDir, C:\_gdl\datastore\assets, --assetIndex, 1.16, --uuid, c6290b3790ec425aa7738ebeb05cfe0d, --accessToken, ????????, --userType, mojang, --versionType, release, --launchTarget, fmlclient, --fml.forgeVersion, 34.1.5, --fml.mcVersion, 1.16.3, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20200911.084530]
[03Oct2020 11:37:06.261] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 7.0.1+78+master.e9771d8 starting: java version 1.8.0_242 by AdoptOpenJDK
[03Oct2020 11:37:07.146] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust
[03Oct2020 11:37:07.309] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.1 Source=file:/C:/_gdl/datastore/libraries/org/spongepowered/mixin/0.8.1/mixin-0.8.1.jar S
package corgiaoc.byg.core;
import corgiaoc.byg.BYG;
import corgiaoc.byg.common.entity.boat.BYGBoatEntity;
import corgiaoc.byg.common.properties.BYGCreativeTab;
import corgiaoc.byg.common.properties.items.itemtiers.BYGArmorTiers;
import corgiaoc.byg.common.properties.items.itemtiers.BYGItemTiers;
import net.minecraft.inventory.EquipmentSlotType;
import net.minecraft.item.BlockItem;
import net.minecraft.item.Food;
package io.github.opencubicchunks.cubicchunks.chunk.heightmap;
import net.minecraft.util.BitStorage;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.chunk.ChunkAccess;
import java.util.function.Predicate;
public class CCHeightmap {
private static final Predicate<BlockState> NOT_AIR = (blockState) -> !blockState.isAir();
package corgiaoc.byg.common.world.feature.overworld;
import com.mojang.serialization.Codec;
import corgiaoc.byg.core.world.BYGBiomes;
import corgiaoc.byg.util.noise.fastnoise.FastNoise;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Registry;
import net.minecraft.data.BuiltinRegistries;
import net.minecraft.resources.ResourceKey;
import net.minecraft.tags.BlockTags;
package io.github.opencubicchunks.cubicchunks.chunk;
import java.util.Collection;
import java.util.Collections;
import java.util.Map;
import com.google.common.collect.Maps;
import io.github.opencubicchunks.cubicchunks.utils.Coords;
import io.github.opencubicchunks.cubicchunks.world.DummyHeightmap;
import net.minecraft.core.BlockPos;
package corgiaoc.byg.mixin.common.world;
import corgiaoc.byg.util.noise.fastnoise.FastNoise;
import net.minecraft.server.MinecraftServer;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.registry.Registry;
import net.minecraft.world.World;
import net.minecraft.world.biome.Biome;
import net.minecraft.world.biome.BiomeManager;
import net.minecraft.world.server.ServerWorld;
package io.github.opencubicchunks.cubicchunks.chunk.biome;
import javax.annotation.Nullable;
import io.github.opencubicchunks.cubicchunks.CubicChunks;
import io.github.opencubicchunks.cubicchunks.chunk.IBigCube;
import io.github.opencubicchunks.cubicchunks.chunk.util.CubePos;
import io.github.opencubicchunks.cubicchunks.server.CubicLevelHeightAccessor;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
package net.minecraft.world.level.chunk;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.core.IdMap;
import net.minecraft.core.QuartPos;
import net.minecraft.util.Mth;
import net.minecraft.world.level.ChunkPos;
import net.minecraft.world.level.LevelHeightAccessor;
import net.minecraft.world.level.biome.Biome;
package io.github.opencubicchunks.cubicchunks.chunk.biome;
import javax.annotation.Nullable;
import io.github.opencubicchunks.cubicchunks.CubicChunks;
import io.github.opencubicchunks.cubicchunks.chunk.IBigCube;
import io.github.opencubicchunks.cubicchunks.chunk.util.CubePos;
import io.github.opencubicchunks.cubicchunks.mixin.access.common.BiomeContainerAccess;
import io.github.opencubicchunks.cubicchunks.server.CubicLevelHeightAccessor;
import net.fabricmc.api.EnvType;