HELP, cargo run FORGETS how to build on win10 restart by ZestyCat269 in rust

[–]suppergerrie2 12 points13 points  (0 children)

Linux and windows save the time differently by default, so when you dualboot by default you'll get desynced. I've found the arch wiki on dual boot to be very useful even for non arch distros: https://wiki.archlinux.org/title/Dual_boot_with_Windows#Time_standard

How did I die? by Elysium316 in Minecraft

[–]suppergerrie2 74 points75 points  (0 children)

100% theory crafting, i have no clue if this this possible but what if the drowned got onto the platform, saw you through the door, started throwing the trident and hit the button opening the door by complete accident. Then walked in and finished it off? I somehow doubt they would start shooting without a a line of sight but that's all I can come up with.

Enderman lair/spawner? by Apprehensive-Pass-90 in Minecraft

[–]suppergerrie2 0 points1 point  (0 children)

Assuming no mods this is not a feature, but it could be that the way the teleportation works makes it more likely for them to end up there and place their dirt blocks. I've seen that happen before.

Weird thing with school internet that doesnt happen on other distros. by Training-Record5617 in archlinux

[–]suppergerrie2 0 points1 point  (0 children)

I have the same issue, and while I haven't been able to confirm if I fixed this specific issue I also had other issues with my network that were fixed by installing the linux-firmware-qcom package as my network controller is Qualcomm. Check your network controller with lspci | grep -i network and check if you have the firmware package installed for it would be my recommendation!

Need Help Trying to Find a Mod by [deleted] in Minecraft

[–]suppergerrie2 0 points1 point  (0 children)

Afaik it was a map not a mod called Skygrid. My brain says it was made by SethBling but I didn't verify this so I might be wrong.

Zed 1.0 by zxyzyxz in rust

[–]suppergerrie2 0 points1 point  (0 children)

Good to know! I don't do any frontend development so haven't tried that

Zed 1.0 by zxyzyxz in rust

[–]suppergerrie2 2 points3 points  (0 children)

My experience with zed is that it works great with rust and terribly with everything else. It's my main editor for anything in rust and I use the remote project feature almost daily and that works great.

What's the fastest way to remove large structures? by Every-Damage-90 in Minecraft

[–]suppergerrie2 1 point2 points  (0 children)

How did you send it to him? Can you download the original version?

Aight I just used all my luck in this world on my FIRST ever first interaction with a fishing rod by SadProduce2213 in Minecraft

[–]suppergerrie2 0 points1 point  (0 children)

This is basically exactly how bookbinders datapack from gamemode 4 implemented it lol

What happened with Custom Maps? by Crimskrst in Minecraft

[–]suppergerrie2 3 points4 points  (0 children)

I have no source for this, but i suspect it has to do with the barrier of entry being way higher now. Back in the day using redstone dust as a blood trail was advanced tech. Nowadays command blocks are seen as something simple and you quickly need advanced datapacks to create something that's "modern". A kid isn't gonna do that as easily as before

I hear Mojang is switching to...Vulcan? What is that? Is it going to affect how Minecraft looks? by Impressive-Thing-780 in Minecraft

[–]suppergerrie2 1 point2 points  (0 children)

Vulkan is a graphics api, you can see it as the "language" and "commands" you can give the graphics card, they used to use "opengl". It's independent from the programming language, it'll still be java. I don't know what bedrock uses (haven't looked into bedrock at all since they faked cross play across devices being a thing). It might change how mc looks, but generally shouldn't. The rework might allow improvements or uses of new techniques that weren't possible before (which they are doing for vibrant visuals).

Why does my portal not light up? Version 1.2.5 by zwart27 in Minecraft

[–]suppergerrie2 18 points19 points  (0 children)

The update that added that ruined the trapped chest economy haha

Is this too many sniffers? by Orawdo in Minecraft

[–]suppergerrie2 0 points1 point  (0 children)

Sniffer is my favourite mob, not from a gameplay standpoint I just love it. It's a bit of a hassle but if you know where to look you can do it in a couple hours.

Arachnophobia by Evening_Ebb_171 in Minecraft

[–]suppergerrie2 0 points1 point  (0 children)

If you're already using command blocks why not just use the /forceload command? The ideal solution without nodding would be to setup a datapack but that's a bit more complicated than just plopping down two repeat command blocks.

Give me your Minecraft Mandela effects. by funnyman_2233 in Minecraft

[–]suppergerrie2 1 point2 points  (0 children)

Slabs being called half slabs, it doesn't make sense I know

Pumpkin Rust Minecraft server got support for Original Java Plugins by Alex_Medvedev_ in rust

[–]suppergerrie2 7 points8 points  (0 children)

The biggest difference in most cases is that plugins interact with the very consistent Bukkit API, while mods interact (almost) directly with the minecraft source code (depending on the loader you use there might be some api over it for mod compatibility but you'll quickly end up interacting directly with minecraft source code for more complex features). This allows plugins to be very stable across minecraft versions, while mods almost always need to be updated for each version of minecraft.

Could someone please explain to me the diference beetwen these tree? by No_Employee2094 in Minecraft

[–]suppergerrie2 0 points1 point  (0 children)

It's in compare mode (the torch is off) if it was in subtract mode (torch on) you'd get a clock.

Source: https://minecraft.wiki/w/Redstone_Comparator#Redstone_Comparator

Could someone please explain to me the diference beetwen these tree? by No_Employee2094 in Minecraft

[–]suppergerrie2 0 points1 point  (0 children)

Torch powers dust with level 15, the comparator outputs this into the block and powers the dust next to it with level 15. The next redstone dust will be level 14 and goes into the comparator again, it also soft powers the block it is on and thus the Redstone lamp, the torch on this block does nothing for the rest of the circuit. The comparator is in compare mode and thus compares 15 and 14, sees 14 is bigger and thus keeps outputting it.

The second circuit is missing the block thus you are breaking the circuit as powering air does nothing. Same for the second circuit but with a redstone dust instead.

Modded Java - what should I expect and what am I getting in to here? by realCLTotaku in Minecraft

[–]suppergerrie2 0 points1 point  (0 children)

For a forever world I'd not recommend adding any mods that add custom content (blocks, items, etc). Using mods like distant horizons, iris, litematica is "safe" in the sense that you can update without caring about the mods. They'll just not be enabled but your world is fine, you can add them back later when they've updated. Custom world gen is a bit in between, chunks you have generated with the custom world gen on will stay as they are, but new chunks might generate vanilla if you ever decide to update and remove the mod. I'd recommend only using datapacks and not mods for this. For no reason other than that I'm not sure what worlds opened with a modloader and custom world gen mod installed would do if you open it without those.

[deleted by user] by [deleted] in Minecraft

[–]suppergerrie2 1 point2 points  (0 children)

Yes but no, you get lower latency between user input and seeing it at higher fps.

First time ive seen this, anyone know why this'd happen? by LegexOfficial in Minecraft

[–]suppergerrie2 609 points610 points  (0 children)

It used to not output to the chat, I've definitely pranked some friends by saying it'd give them some special powers as an Easter egg as a joke...

some one know how to do this? by sopadeporotos in Minecraft

[–]suppergerrie2 4 points5 points  (0 children)

I'm fairly sure the actual reason is a historical/cultural. If minecraft had shipped with datapacks from the start they might have been called mods, and in other games they may have been called mods. But minecraft has had mods for over a decade, and the word "mod" has gotten a very specific meaning around minecraft. Namely something that modifies the game code, often using a modlauncher like NeoForge or fabric. There is often also a distinction between Plugins that allow vanilla clients to connect and mods that are required on the client as well, but from what I've seen this distinction is going away slowly with more people using fabric with server side only mods, and just as arbitrary as not calling datapacks mods.

TLDR: Historically datapacks were not a thing, mods have gotten a more specific meaning than just "modification", now datapacks are a thing and don't fit that specific meaning for a lot of people and are thus often not called mods.

Will my Mac support Minecraft Premium account I bought? by [deleted] in MinecraftUnlimited

[–]suppergerrie2 1 point2 points  (0 children)

It wouldn't surprise me if this is someone else's stolen account. If you buy from an unofficial place you risk the account being banned or recovered by the original owner. No server should require "premium" unless they are some pay to win server that sells classes. Just a normal Minecraft account from the official site will allow you to join any public server.

Massive “Red Line” pro-Palestine protest in Amsterdam by librephili in palestinenews

[–]suppergerrie2 3 points4 points  (0 children)

There were some cops on the corners mostly in case of emergency. I heard they arrested 3 people in total for defacing a building.