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

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.

RavynousHunter

New Member
Jul 29, 2019
2,784
-3
1
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.
 

ljfa

New Member
Jul 29, 2019
2,761
-46
0
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.
 

1SDAN

New Member
Jul 29, 2019
1,189
-15
0
"Minecraft is racist because the main character is white"
-Some idiot from a racism in video games video's comments
 

ljfa

New Member
Jul 29, 2019
2,761
-46
0
I had someone accuse me of being sexist because I am male and did not give RC to a female developer....
This one guy saying "let's take RoC from Reika and give it to someone else" is still the best :D
 

Reika

RotaryCraft Dev
FTB Mod Dev
Sep 3, 2013
5,079
5,331
550
Toronto, Canada
sites.google.com
>.<
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

efefe48

New Member
Jul 29, 2019
64
0
0
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

LivingAngryCheese

Over-Achiever
Aug 22, 2014
676
1,580
228
A place
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
 

Celestialphoenix

Too Much Free Time
Nov 9, 2012
3,741
3,204
333
Tartarus.. I mean at work. Same thing really.
(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.