Slick - custom fonts and linebreaks

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?

If you have several Slick questions, ask them all in a single thread rather than cluttering the forums.

TrueTypeFont is deprecated. Line breaks should work with angel code fonts and unicode fonts.

This. :o

Well, i guessed it made more sense creating a topic for each question, to be search-friendly.

Thank you for the answer