Really stupid things that people have said about Modded MC(Off topicness makes moderators tired)

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Is this a good idea?

  • Yes

    Votes: 66 18.2%
  • No

    Votes: 18 5.0%
  • if people don't get out of control

    Votes: 68 18.8%
  • POTATOES

    Votes: 210 58.0%

  • Total voters
    362
Status
Not open for further replies.
Mutable as opposed to immutable - i.e. final. In other words, having an object that has properties that can be manipulated by other objects is bad programming.

It is one of the core concepts of OO programming.


I do not understand people who feel that using design features of a language is bad design, that a good programmer deliberately handicaps themselves by limiting their toolset, like when people say using automatic imports is bad form.
That I can see from one particular crowd: hardcore C++ programmers. Typically, your data fields are private there, and you make accessor methods for them. (Or, if you're using C#, accessor fields.) Mostly, its to control how things are retrieved and set, which I can partly understand, but if your accessor methods are just going to be "return field;" and "field = value;," then you may as well make it public.

http://minecraft.gamepedia.com/Chunk_format
Look at the ExtendedBlockStorage class. They're actually using half-bytes (aka nibbles) for that in the memory.
Accessing an element in such a nibble array basically goes like this:
Code:
byte value = array[index >> 1];
if(index & 1 == 0)
    return value & 0xF;
else
    return value >> 4;
I stand corrected. Its still an...odd way to implement things. I dunno, I tend to avoid bitwise operators, myself. Too messy and thinkin on 'em too long scrambles my brain.
 
I stand corrected. Its still an...odd way to implement things. I dunno, I tend to avoid bitwise operators, myself. Too messy and thinkin on 'em too long scrambles my brain.
It's kinda like std::vector<bool> in C++. Saving space in exchange for performance.
 
"Minecraft is racist because the main character is white"
-Some idiot from a racism in video games video's comments
 
>.<
Are you freaking kidding me??!?!
I cannot what who my where why
Their logic was that MC modding is 90% male (come to think of it, I can only think of two big-name female developers, and one of them has been sporadically present over the last 4 years), and that by refusing to "equalize the assets" (their words) I was perpetuating a "male-dominated culture" (again their words).
 
  • Like
Reactions: Strikingwolf
Oh man went away because goddamn internet provider is a banana.
Return.
Thread in triple digits.....
new rule for the game- for every 100 pages drink 3 bottles
...I see the thread is derailing again isnt it.
 
  • Like
Reactions: 1SDAN
Getting this Thread back on topic:
My friend says that you need to pay mojang 40$ to install mods
Also says that the're cheats because of all the ore multiplication
And hammers me for not playing "real" minecraft
(And he's the one with a pirated account)
Was about to say
arguecat.png
 
(friend) Dude is that Minecraft?
(me) yes
(Guy opposite) isn't that the game with shitty graphics from the 90s?
(me) Yep. The graphics are pretty shit. {Turns laptop around.}
2012-05-21_231208.png


Better not lose any more brain cells than we already do by reading here

Alcohol saturation will do less damage.
Heck- it'll probably regrow a few brain cells in comparison.
 
Last edited:
Status
Not open for further replies.