Compare commits
2 Commits
fc5d12980f
...
4f78c9bd03
Author | SHA1 | Date | |
---|---|---|---|
4f78c9bd03 | |||
6032f8af2b |
@ -19,7 +19,7 @@ jobs:
|
||||
- name: Setup JDK ${{ matrix.java }}
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'liberica'
|
||||
distribution: 'oracle'
|
||||
java-version: ${{ matrix.java }}
|
||||
|
||||
- name: Cache Gradle packages
|
||||
|
@ -5,7 +5,7 @@ import earth.terrarium.adastra.api.systems.OxygenApi;
|
||||
import fuzs.thinair.helper.AirQualityHelperImpl;
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
import net.fabricmc.loader.api.FabricLoader;
|
||||
import net.minecraft.world.entity.Entity;
|
||||
import net.minecraft.world.entity.LivingEntity;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
@ -19,7 +19,7 @@ public class CreateAirFabric implements ModInitializer {
|
||||
LOGGER.info("Create addon mod [{}] is loading alongside Create [{}]!", NAME, Create.VERSION);
|
||||
}
|
||||
|
||||
public static boolean isOxygen(Entity entity) {
|
||||
public static boolean isOxygen(LivingEntity entity) {
|
||||
boolean oxygen = true;
|
||||
if (FabricLoader.getInstance().isModLoaded("thinair")) {
|
||||
oxygen &= new AirQualityHelperImpl()
|
||||
|
Loading…
x
Reference in New Issue
Block a user