mirror of
https://github.com/TeamMidnightDust/BetterBeds.git
synced 2025-12-16 21:45:09 +01:00
Update to 1.17-pre1
This commit is contained in:
34
src/main/java/eu/midnightdust/betterbeds/BetterBedsClient.java
Normal file → Executable file
34
src/main/java/eu/midnightdust/betterbeds/BetterBedsClient.java
Normal file → Executable file
@@ -1,17 +1,17 @@
|
||||
package eu.midnightdust.betterbeds;
|
||||
|
||||
import net.fabricmc.api.ClientModInitializer;
|
||||
import net.fabricmc.fabric.api.resource.ResourceManagerHelper;
|
||||
import net.fabricmc.loader.api.FabricLoader;
|
||||
import net.minecraft.util.Identifier;
|
||||
|
||||
public class BetterBedsClient implements ClientModInitializer {
|
||||
|
||||
public void onInitializeClient() {
|
||||
|
||||
FabricLoader.getInstance().getModContainer("betterbeds").ifPresent(modContainer -> {
|
||||
ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("betterbeds:fancybeds"), "resourcepacks/fancybeds", modContainer, false);
|
||||
ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("betterbeds:connectedbeds"), "resourcepacks/connectedbeds", modContainer, false);
|
||||
});
|
||||
}
|
||||
}
|
||||
package eu.midnightdust.betterbeds;
|
||||
|
||||
import net.fabricmc.api.ClientModInitializer;
|
||||
import net.fabricmc.fabric.api.resource.ResourceManagerHelper;
|
||||
import net.fabricmc.fabric.api.resource.ResourcePackActivationType;
|
||||
import net.fabricmc.loader.api.FabricLoader;
|
||||
import net.minecraft.util.Identifier;
|
||||
|
||||
public class BetterBedsClient implements ClientModInitializer {
|
||||
|
||||
public void onInitializeClient() {
|
||||
FabricLoader.getInstance().getModContainer("betterbeds").ifPresent(modContainer -> {
|
||||
ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("betterbeds:fancybeds"), modContainer, ResourcePackActivationType.NORMAL);
|
||||
ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("betterbeds:connectedbeds"), modContainer, ResourcePackActivationType.NORMAL);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
54
src/main/java/eu/midnightdust/betterbeds/mixin/MixinBedBlock.java
Normal file → Executable file
54
src/main/java/eu/midnightdust/betterbeds/mixin/MixinBedBlock.java
Normal file → Executable file
@@ -1,27 +1,27 @@
|
||||
package eu.midnightdust.betterbeds.mixin;
|
||||
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
import org.spongepowered.asm.mixin.injection.Inject;
|
||||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
||||
|
||||
@Mixin(value = BedBlock.class, priority = 2000)
|
||||
public abstract class MixinBedBlock extends HorizontalFacingBlock {
|
||||
|
||||
protected MixinBedBlock(Settings settings) {
|
||||
super(settings);
|
||||
}
|
||||
|
||||
@Inject(at = @At("RETURN"), method = "getRenderType", cancellable = true)
|
||||
private void getRenderType(BlockState state, CallbackInfoReturnable<BlockRenderType> cir) {
|
||||
cir.setReturnValue(BlockRenderType.MODEL);
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("deprecation")
|
||||
public boolean isSideInvisible(BlockState state, BlockState neighborState, Direction offset) {
|
||||
return neighborState.getBlock() instanceof BedBlock;
|
||||
}
|
||||
}
|
||||
package eu.midnightdust.betterbeds.mixin;
|
||||
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
import org.spongepowered.asm.mixin.injection.Inject;
|
||||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
||||
|
||||
@Mixin(value = BedBlock.class, priority = 2000)
|
||||
public abstract class MixinBedBlock extends HorizontalFacingBlock {
|
||||
|
||||
protected MixinBedBlock(Settings settings) {
|
||||
super(settings);
|
||||
}
|
||||
|
||||
@Inject(at = @At("RETURN"), method = "getRenderType", cancellable = true)
|
||||
private void getRenderType(BlockState state, CallbackInfoReturnable<BlockRenderType> cir) {
|
||||
cir.setReturnValue(BlockRenderType.MODEL);
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("deprecation")
|
||||
public boolean isSideInvisible(BlockState state, BlockState neighborState, Direction offset) {
|
||||
return neighborState.getBlock() instanceof BedBlock;
|
||||
}
|
||||
}
|
||||
|
||||
55
src/main/java/eu/midnightdust/betterbeds/mixin/MixinBlockEntityRendererDispatcher.java
Normal file → Executable file
55
src/main/java/eu/midnightdust/betterbeds/mixin/MixinBlockEntityRendererDispatcher.java
Normal file → Executable file
@@ -1,30 +1,25 @@
|
||||
package eu.midnightdust.betterbeds.mixin;
|
||||
|
||||
import com.google.common.collect.Maps;
|
||||
import net.minecraft.block.BedBlock;
|
||||
import net.minecraft.block.BlockRenderType;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.HorizontalFacingBlock;
|
||||
import net.minecraft.block.entity.BlockEntityType;
|
||||
import net.minecraft.client.render.block.entity.BlockEntityRenderDispatcher;
|
||||
import net.minecraft.client.render.block.entity.BlockEntityRenderer;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import org.spongepowered.asm.mixin.Final;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.Overwrite;
|
||||
import org.spongepowered.asm.mixin.Shadow;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
import org.spongepowered.asm.mixin.injection.Inject;
|
||||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@Mixin(BlockEntityRenderDispatcher.class)
|
||||
public abstract class MixinBlockEntityRendererDispatcher {
|
||||
@Shadow @Final private Map<BlockEntityType<?>, BlockEntityRenderer<?>> renderers;
|
||||
|
||||
@Inject(method = "<init>()V", at = @At("TAIL"))
|
||||
private void init(CallbackInfo info) {
|
||||
renderers.remove(BlockEntityType.BED);
|
||||
}
|
||||
}
|
||||
package eu.midnightdust.betterbeds.mixin;
|
||||
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.block.entity.BlockEntityType;
|
||||
import net.minecraft.client.render.block.entity.BlockEntityRendererFactories;
|
||||
import net.minecraft.client.render.block.entity.BlockEntityRendererFactory;
|
||||
import org.spongepowered.asm.mixin.Final;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.Shadow;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
import org.spongepowered.asm.mixin.injection.Inject;
|
||||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@Mixin(BlockEntityRendererFactories.class)
|
||||
public abstract class MixinBlockEntityRendererDispatcher {
|
||||
|
||||
@Shadow @Final private static Map<BlockEntityType<?>, BlockEntityRendererFactory<?>> FACTORIES;
|
||||
|
||||
@Inject(method = "register", at = @At("TAIL"))
|
||||
private static <T extends BlockEntity> void bb$onRegister(BlockEntityType<? extends T> type, BlockEntityRendererFactory<T> factory, CallbackInfo ci) {
|
||||
FACTORIES.remove(BlockEntityType.BED);
|
||||
}
|
||||
}
|
||||
|
||||
0
src/main/resources/assets/betterbeds/icon.png
Normal file → Executable file
0
src/main/resources/assets/betterbeds/icon.png
Normal file → Executable file
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 5.0 KiB |
0
src/main/resources/assets/minecraft/blockstates/black_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/black_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/blue_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/blue_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/brown_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/brown_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/cyan_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/cyan_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/gray_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/gray_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/green_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/green_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/light_blue_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/light_blue_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/light_gray_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/light_gray_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/lime_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/lime_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/magenta_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/magenta_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/orange_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/orange_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/pink_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/pink_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/purple_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/purple_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/red_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/red_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/white_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/white_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/yellow_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/blockstates/yellow_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/black_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/black_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/black_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/black_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/blue_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/blue_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/blue_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/blue_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/brown_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/brown_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/brown_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/brown_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/cyan_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/cyan_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/cyan_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/cyan_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/gray_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/gray_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/gray_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/gray_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/green_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/green_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/green_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/green_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/light_blue_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/light_blue_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/light_blue_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/light_blue_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/light_gray_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/light_gray_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/light_gray_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/light_gray_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/lime_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/lime_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/lime_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/lime_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/magenta_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/magenta_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/magenta_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/magenta_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/orange_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/orange_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/orange_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/orange_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/pink_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/pink_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/pink_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/pink_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/purple_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/purple_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/purple_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/purple_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/red_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/red_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/red_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/red_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/white_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/white_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/white_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/white_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/yellow_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/yellow_bed_foot.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/yellow_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/block/yellow_bed_head.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/black_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/black_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/blue_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/blue_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/brown_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/brown_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/cyan_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/cyan_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/gray_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/gray_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/green_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/green_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/light_blue_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/light_blue_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/light_gray_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/light_gray_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/lime_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/lime_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/magenta_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/magenta_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/orange_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/orange_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/pink_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/pink_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/purple_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/purple_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/red_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/red_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/white_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/white_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/yellow_bed.json
Normal file → Executable file
0
src/main/resources/assets/minecraft/models/item/yellow_bed.json
Normal file → Executable file
0
src/main/resources/betterbeds.mixins.json
Normal file → Executable file
0
src/main/resources/betterbeds.mixins.json
Normal file → Executable file
0
src/main/resources/fabric.mod.json
Normal file → Executable file
0
src/main/resources/fabric.mod.json
Normal file → Executable file
0
src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_foot.json
Normal file → Executable file
0
src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_foot.json
Normal file → Executable file
0
src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_head.json
Normal file → Executable file
0
src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_head.json
Normal file → Executable file
18
src/main/resources/resourcepacks/connectedbeds/license.txt
Normal file → Executable file
18
src/main/resources/resourcepacks/connectedbeds/license.txt
Normal file → Executable file
@@ -1,10 +1,10 @@
|
||||
The MIT License
|
||||
Copyright © 2019 Motschen
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
|
||||
and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
The MIT License
|
||||
Copyright © 2019 Motschen
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
|
||||
and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
12
src/main/resources/resourcepacks/connectedbeds/pack.mcmeta
Normal file → Executable file
12
src/main/resources/resourcepacks/connectedbeds/pack.mcmeta
Normal file → Executable file
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 6,
|
||||
"description": "§2Allows beds to connect <3"
|
||||
}
|
||||
}
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 7,
|
||||
"description": "§2Allows beds to connect <3"
|
||||
}
|
||||
}
|
||||
|
||||
0
src/main/resources/resourcepacks/connectedbeds/pack.png
Normal file → Executable file
0
src/main/resources/resourcepacks/connectedbeds/pack.png
Normal file → Executable file
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
0
src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/bed_head.json
Normal file → Executable file
0
src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/bed_head.json
Normal file → Executable file
18
src/main/resources/resourcepacks/fancybeds/license.txt
Normal file → Executable file
18
src/main/resources/resourcepacks/fancybeds/license.txt
Normal file → Executable file
@@ -1,10 +1,10 @@
|
||||
The MIT License
|
||||
Copyright © 2019 Motschen
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
|
||||
and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
The MIT License
|
||||
Copyright © 2019 Motschen
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
|
||||
and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
12
src/main/resources/resourcepacks/fancybeds/pack.mcmeta
Normal file → Executable file
12
src/main/resources/resourcepacks/fancybeds/pack.mcmeta
Normal file → Executable file
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 6,
|
||||
"description": "§2Makes beds look more fancy"
|
||||
}
|
||||
}
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 7,
|
||||
"description": "§2Makes beds look more fancy"
|
||||
}
|
||||
}
|
||||
|
||||
0
src/main/resources/resourcepacks/fancybeds/pack.png
Normal file → Executable file
0
src/main/resources/resourcepacks/fancybeds/pack.png
Normal file → Executable file
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
Reference in New Issue
Block a user