Skip to content

Commit 882b3ff

Browse files
committed
Fixed the color text command. It was adding 2 to the hue number entered because it was
adjusting for an error with Inside UO's color mapping. As we no longer use Inside UO, this is no longer needed.
1 parent e5fbe40 commit 882b3ff

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/commands/gm/color.src

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ program color(who, textline)
1414
item.color := 0;
1515
return;
1616
endif
17-
item.color := CINT (textline) + 2; // We add 2 because the colour numbers in Inside UO are off by 2
17+
item.color := CINT (textline);
1818
return;
19-
19+
2020

2121
endprogram

0 commit comments

Comments
 (0)