diff --git a/src/main/resources/data/computercraft/lua/rom/programs/help.lua b/src/main/resources/data/computercraft/lua/rom/programs/help.lua index 43ba258d4..9c7081ecc 100644 --- a/src/main/resources/data/computercraft/lua/rom/programs/help.lua +++ b/src/main/resources/data/computercraft/lua/rom/programs/help.lua @@ -265,7 +265,7 @@ while true do local new_width, new_height = term.getSize() if new_width ~= width then - lines = word_wrap(contents, new_width) + lines, fg, bg = word_wrap(contents, new_width) print_height = #lines end