mojira.dev

AnrDaemon

More than one avatar was detected! There might be multiple accounts sharing this same name.

Assigned

No issues.

Reported

MC-222198 Crash - unable to locate saved directory Invalid MC-127394 Minecraft does not render characters in Unicode mb4 range Fixed MC-86722 Broken RFC 2782 (DNS SRV) conformance Duplicate MC-81208 Times for "world last played" are off by an hour. Invalid

Comments

And the coordinates in the overworld - ?

All your "community support" can help with is to find a "reboot" button in Start menu and suggest to check again after that. Trust me I can do that without external guidance.

Given the obvious crash and the qualified diagnostics I performed (given my 20+ years experience in IT support and 15+ years in programming I can say it was qualified), I can surely call it a bug in the code. I can even tell you why it is crashing. But you are not a programmer and won't understand the explanation.

I'm using UNICODE font containing these characters. Thank you. This is why I wrote the report like that.
The renderer should at least render "UNKNOWN CHARACTER" glyph in place.

Were anything changed in the relevant code? No? Then of course this is still an issue.

The apparent problem is that it missing a lot of code.
See https://tools.ietf.org/html/rfc2782 section "Usage rules".

Can you be more specific?
Is this reproducible with any server/DNS setup? With specific server/setup?

Can someone please at last spend an hour coding a conformant server selection?
It's not like you need to invent wheels, the process is well documented.

Your search-foo was better than mine. I've tried to search before reporting, but found nothing.

It is not a concern. It is an issue.
Nothing has changed.
Still same problem.

The problem was broken Java version used by MC.

Even better,

$ cat GetCurrentDateTime.java ; date "+%F %H:%M:%S"; java GetCurrentDateTime; java -version
import java.util.*;
import java.text.*;

public class GetCurrentDateTime {
  public static void main(String[] args) {

    DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

    //get current date time with Calendar()
    Calendar cal = Calendar.getInstance();

    System.out.println(dateFormat.format(cal.getTime()) + " (system)");
    dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
    System.out.println(dateFormat.format(cal.getTime()) + " (" + dateFormat.getTimeZone().getID() + ")");
    dateFormat.setTimeZone(TimeZone.getTimeZone("Europe/Moscow"));
    System.out.println(dateFormat.format(cal.getTime()) + " (" + dateFormat.getTimeZone().getID() + ")");

  }
}
2015-06-10 12:40:56
2015-06-10 12:40:56 (system)
2015-06-10 09:40:56 (UTC)
2015-06-10 12:40:56 (Europe/Moscow)
java version "1.7.0_67"
Java(TM) SE Runtime Environment (build 1.7.0_67-b01)
Java HotSpot(TM) 64-Bit Server VM (build 24.65-b04, mixed mode)

$ cat GetCurrentDateTime.java ; date "+%F %H:%M:%S"; java GetCurrentDateTime
import java.util.Date;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;

public class GetCurrentDateTime {
public static void main(String[] args) {

DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//get current date time with Date()
Date date = new Date();
System.out.println(dateFormat.format(date));

//get current date time with Calendar()
Calendar cal = Calendar.getInstance();
System.out.println(dateFormat.format(cal.getTime()));

}
}
2015-06-10 12:19:10
2015-06-10 12:19:11
2015-06-10 12:19:11

Pediwikia is never an argument for me.

> Cannot confirm.

Try harder?