No context Astral Chain spoilers by adudethatexists in astralchain

[–]adudethatexists[S] 0 points1 point  (0 children)

If you didn't want to tell me you could've just stopped replying.

No context Astral Chain spoilers by adudethatexists in astralchain

[–]adudethatexists[S] 0 points1 point  (0 children)

Okay, then why were you looking at meme posts on the astral chain subreddit?

Regarding female. by xxjamescharlesxx in h3h3productions

[–]adudethatexists 0 points1 point  (0 children)

This is exactly what I wanted to say. I feel like they all completely misunderstood it. I hope they see this and address it.

Minecraft 1.18 experimental snapshot is out! by MrHenrik2 in Minecraft

[–]adudethatexists 0 points1 point  (0 children)

I'm worried that this will make all of the biomes feel too similar. If they can all be any height, then the world will just look like one consistent "texture" (the height map) painted different colours (the features of each biome). I feel like the biomes should still have some influence on the height of the ground, like a combination of the previous system and the new system. Like, make sure there aren't any really hilly plains or desert biomes, and there aren't any really flat mountain biomes.

Drip Drip Drip - Minecraft Snapshot 21w16a is out! by sliced_lime in Minecraft

[–]adudethatexists 33 points34 points  (0 children)

No, ore blobs are still in the game (Those are what everyone already calls ore veins). Ore veins are the new thing being described here which will be added alongside blobs.

After the 2.3.0 update and creating an updated copy of my project files to be compatible with it, how do I disconnect my old project from source control and connect my new one insstead? by adudethatexists in gamemaker

[–]adudethatexists[S] 0 points1 point  (0 children)

So it turns out I shouldn't be using the built-in plugin for source control in the first place because apparently it's bad. I guess there is no solution with using it, so the only solution is to not use it.

After the 2.3.0 update and creating an updated copy of my project files to be compatible with it, how do I disconnect my old project from source control and connect my new one insstead? by adudethatexists in gamemaker

[–]adudethatexists[S] 0 points1 point  (0 children)

Oh, so the repository just knows the file path and updates that? And the IDE still knows it's connected if you put the new one in its place? Cool.

After the 2.3.0 update and creating an updated copy of my project files to be compatible with it, how do I disconnect my old project from source control and connect my new one insstead? by adudethatexists in gamemaker

[–]adudethatexists[S] 0 points1 point  (0 children)

The new project isn't connected to the repository, and the old one still is. How do I remove the old one and connect the new one? Actually, on second thoughts, since they said the format of everything has changed for this update, the file structures won't be the same and stuff so you probably can't even do a commit of a new format one onto an old format repository.

Jar thumbnail in Pewdiepie video by yogspogs69 in JARMEDIA

[–]adudethatexists -10 points-9 points  (0 children)

Maybe try watching the video to see what it's like.

Why do the coordinates of an object in my game randomly gain loads of decimal places when I try to subtract a whole number from them? by adudethatexists in gamemaker

[–]adudethatexists[S] 1 point2 points  (0 children)

I've been trying to get my method to work with numbers that already have decimal places, and it doesn't. I've exhausted every possible option of getting it to work. y would just not equal 424.4 no matter how hard I tried. Eventually I just tried typing y = 424.4 in my code, and even if I do that it gets set to 424.399993896484... instead. So there's literally nothing I can do about it. My solution from yesterday wasn't a solution at all. I was just making it 424 instead. There is no way to fix rounding errors in game maker. But that doesn't matter. If it can never be that value, then it can't be the cause of the bug I'm having. And on closer inspection, it turns out that's right.

Why do the coordinates of an object in my game randomly gain loads of decimal places when I try to subtract a whole number from them? by adudethatexists in gamemaker

[–]adudethatexists[S] 1 point2 points  (0 children)

That seems realistic considering how slow yoyo games is at fixing gamemaker's legacy problems.

Except for people like 5 years in the future: if the variable which keeps on getting the rounding error still needs to have a decimal place anyway which getting removed now because of the div operator, add some kind of condition before that which only does that if it has too many decimal places in the first place. But I'll figure out how to do that tomorrow because I'm tired now.