Skip to content

Commit

Permalink
Now functional
Browse files Browse the repository at this point in the history
  • Loading branch information
Adubbz committed Jan 10, 2024
1 parent 9ddc2fd commit 3b12ba1
Show file tree
Hide file tree
Showing 3,408 changed files with 4,408 additions and 3,754 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ ext {
}
}

allprojects {
// Allow 400 errors.
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "400"
}
}
}

subprojects {
apply plugin: 'java'
apply plugin: 'idea'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Copyright 2023, the Glitchfiend Team.
* All rights reserved.
******************************************************************************/
package biomesoplenty.forge.api;
package biomesoplenty.api;

public class BOPAPI
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
* Copyright 2022, the Glitchfiend Team.
* All rights reserved.
******************************************************************************/
package biomesoplenty.forge.api.biome;
package biomesoplenty.api.biome;

import biomesoplenty.forge.api.BOPAPI;
import biomesoplenty.api.BOPAPI;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import net.minecraft.core.registries.Registries;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@
* Copyright 2022, the Glitchfiend Team.
* All rights reserved.
******************************************************************************/
package biomesoplenty.forge.api.block;
package biomesoplenty.api.block;

import net.minecraft.world.level.block.entity.BlockEntityType;
import net.minecraftforge.registries.RegistryObject;

public class BOPBlockEntities
{
public static RegistryObject<BlockEntityType<?>> SIGN;
public static RegistryObject<BlockEntityType<?>> HANGING_SIGN;
public static BlockEntityType<?> SIGN;
public static BlockEntityType<?> HANGING_SIGN;
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
* Copyright 2022, the Glitchfiend Team.
* All rights reserved.
******************************************************************************/
package biomesoplenty.forge.api.block;
package biomesoplenty.api.block;

import biomesoplenty.forge.api.BOPAPI;
import biomesoplenty.api.BOPAPI;
import net.minecraft.world.level.block.state.properties.BlockSetType;

import static net.minecraft.world.level.block.state.properties.BlockSetType.register;
Expand Down
Loading

0 comments on commit 3b12ba1

Please sign in to comment.