mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-06 08:57:45 +07:00
Clarify that only ASCII is supported
This commit is contained in:
parent
e1ffc4ed62
commit
bc308847f4
@ -2347,7 +2347,7 @@ graphicstype.poly = Fill a regular polygon.
|
||||
graphicstype.linepoly = Draw a regular polygon outline.
|
||||
graphicstype.triangle = Fill a triangle.
|
||||
graphicstype.image = Draw an image of some content.\nex: [accent]@router[] or [accent]@dagger[].
|
||||
graphicstype.print = Draws text from the print buffer.\nClears the print buffer.
|
||||
graphicstype.print = Draws text from the print buffer.\nOnly ASCII characters are allowed.\nClears the print buffer.
|
||||
|
||||
lenum.always = Always true.
|
||||
lenum.idiv = Integer division.
|
||||
|
@ -1005,7 +1005,9 @@ public class LExecutor{
|
||||
curX = exec.numi(x); //reset
|
||||
continue;
|
||||
}
|
||||
exec.graphicsBuffer.add(DisplayCmd.get(LogicDisplay.commandPrint, packSign(curX + xOffset), packSign(curY + yOffset), next, 0, 0, 0));
|
||||
if(Fonts.logic.getData().hasGlyph(next)){
|
||||
exec.graphicsBuffer.add(DisplayCmd.get(LogicDisplay.commandPrint, packSign(curX + xOffset), packSign(curY + yOffset), next, 0, 0, 0));
|
||||
}
|
||||
curX += advance;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user