lua_missions icon indicating copy to clipboard operation
lua_missions copied to clipboard

Uses "else if" rather than "elseif" in coroutines.lua

Open EspenBerget opened this issue 3 years ago • 0 comments

There is an extra space in test_table_coroutine_contains_six_or_seven_elements function in coroutines.lua. This creates an extra if statement which lua expects to be closed, but which is not closed by an "end"-statement.

FIX: either add another "end"-statement to the function or simply remove the space.

EspenBerget avatar Dec 02 '22 16:12 EspenBerget