It seems that Slick doesn’t accept the \n linebreak when using custom fonts.
When using the default font, my linebreaks works just fine.
However, when i use:
this.font = new TrueTypeFont(awtFont, true);
this.color = new Color(210, 234, 196);
and:
g.setFont(font);
g.drawString(message, 100, 100);
the linebreaks are converted to spaces.
How can i avoid this?