mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Bump target and fix compatibility with 1.21.1
This commit is contained in:
parent
9907d3c907
commit
81bcf14a60
2 changed files with 9 additions and 4 deletions
|
@ -3,10 +3,10 @@ org.gradle.daemon=false
|
|||
|
||||
# Fabric Properties
|
||||
# check these on https://fabricmc.net/develop
|
||||
minecraft_version=1.21
|
||||
yarn_mappings=1.21+build.9
|
||||
minecraft_version=1.21.1
|
||||
yarn_mappings=1.21.1+build.3
|
||||
loader_version=0.16.5
|
||||
fabric_version=0.102.0+1.21
|
||||
fabric_version=0.105.0+1.21.1
|
||||
|
||||
# Mod Properties
|
||||
group=com.minelittlepony
|
||||
|
@ -15,7 +15,7 @@ org.gradle.daemon=false
|
|||
description=Magical Abilities for Mine Little Pony!
|
||||
|
||||
# Publishing
|
||||
minecraft_version_range=1.21
|
||||
minecraft_version_range=>=1.21
|
||||
modrinth_loader_type=fabric
|
||||
modrinth_project_id=9K7RJlvM
|
||||
|
||||
|
|
|
@ -144,6 +144,11 @@ public class FancyBedBlock extends BedBlock {
|
|||
super(pos, state);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supports(BlockState state) {
|
||||
return getType().supports(state);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockEntityType<?> getType() {
|
||||
return UBlockEntities.FANCY_BED;
|
||||
|
|
Loading…
Reference in a new issue