Skip to content

Commit 4a6ec54

Browse files
committed
Remove "CC may be installed incorrectly" message
It /technically/ may be the case, but in the days of modern mod loaders, much less likely. Normally this is user error. Closes #2372.
1 parent c98b998 commit 4a6ec54

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

projects/core/src/main/java/dan200/computercraft/core/computer/ComputerExecutor.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -545,11 +545,6 @@ private void displayFailure(String message, @Nullable String extra) {
545545
terminal.setCursorPos(0, terminal.getCursorY() + 1);
546546
terminal.write(extra);
547547
}
548-
549-
// And display our generic "CC may be installed incorrectly" message.
550-
terminal.setCursorPos(0, terminal.getCursorY() + 1);
551-
if (terminal.isColour()) terminal.setTextColour(15 - Colour.WHITE.ordinal());
552-
terminal.write("ComputerCraft may be installed incorrectly");
553548
}
554549

555550
private void resumeMachine(@Nullable String event, @Nullable Object @Nullable [] args) throws InterruptedException {

0 commit comments

Comments
 (0)