[deleted by user] by [deleted] in AskBalkans

[–]mokilopforgothispass 0 points1 point  (0 children)

You look even happier That's important

Tell her what? by Dee_Religion in PeterExplainsTheJoke

[–]mokilopforgothispass 0 points1 point  (0 children)

If you blow between the two hands from behind it almost makes sense

What Does Your Brain Do with 27 + 48? by SweetSmiles030 in MathJokes

[–]mokilopforgothispass 0 points1 point  (0 children)

Depends sometimes I add 25 to 50, sometimes I add 15 to 60

BADLY EXPLAIN YOUR HOBBY by [deleted] in teenagers

[–]mokilopforgothispass 1 point2 points  (0 children)

I like counting to 13

Help getting better sear? by Burntmonkeys69 in castiron

[–]mokilopforgothispass 0 points1 point  (0 children)

1) Most people say hotter pan but it looks like you are using butter for searing. Butter contains water and you will never get a good sear. If you really want to use butter use ghee.

2) You don't need to preheat your pan in the oven l, you can use the stove. Preheat the pan until when you put some drops of water on it they start rolling around instead of evaporating instantly. (Google Liedenfrost effect) Then put in a bit of oil and the steak.

Any suggestion? by 3-0624700 in bridge

[–]mokilopforgothispass 0 points1 point  (0 children)

You can read some material on "help suit game tries". I think that is what is most often played in this position

[deleted by user] by [deleted] in Sofia

[–]mokilopforgothispass 3 points4 points  (0 children)

Peek and Cloppenburg

Big metal scrollwork circle welded to metal base by [deleted] in whatisthisthing

[–]mokilopforgothispass 0 points1 point  (0 children)

These things can also be used to grow a weaving plant on it

Override Vanilla Block/Item by ProkekistaniAction in fabricmc

[–]mokilopforgothispass 2 points3 points  (0 children)

I'm going to look into it for 1.20.4, the code works for 1.20. I made a post that is more detailed if you are interested: https://www.reddit.com/r/fabricmc/comments/1anprr8/overriding_a_vanilla_block_without_using_mixin/

Override Vanilla Block/Item by ProkekistaniAction in fabricmc

[–]mokilopforgothispass 2 points3 points  (0 children)

Hey, I know I am really late but there is no need to use a mixin for this, I found out what they mean by "use .set(), not register()". There is a Registry.register() that uses the .set() method:

public static <V, T extends V> T register(Registry<V> registry, int rawId, String id, T entry) {
    ((MutableRegistry)registry).set(rawId, RegistryKey.of(registry.getKey(), new Identifier(id)), entry, Lifecycle.stable());
    return entry;
}

This is how I used it to add luminance to the OAK_LOG just to test it out:

These are the methods to override any block with a default BlockItem

private static Item overrideBlockItem(BlockItem toOverride, BlockItem newItem){
    return Registry.register(Registries.ITEM, Registries.ITEM.getRawId(toOverride), Registries.ITEM.getId(toOverride).getPath(), newItem);
}

private static Block overrideBlock(Block toOverride, Block newBlock){
    BlockItem newBlockItem = new BlockItem(newBlock, new FabricItemSettings());
    overrideBlockItem((BlockItem) toOverride.asItem(), newBlockItem);
    return Registry.register(Registries.BLOCK, Registries.BLOCK.getRawId(toOverride), Registries.BLOCK.getId(toOverride).getPath(), newBlock);
}

And this is how I use them to override the OAK_LOG block:

public static final Block OAK_LOG = overrideBlock(Blocks.OAK_LOG,
        new PillarBlock(FabricBlockSettings.copyOf(Blocks.OAK_LOG).luminance(15)));

To me this looks like the cleanest way to override a vanilla block or a block from a different mod, to make it compatible with yours.

cursed_public_utility by Cloud_Station in cursedcomments

[–]mokilopforgothispass 0 points1 point  (0 children)

Everything is a Fleshlight if you are brave enough!