This is more of a make code prettier request then anything
![Smile :)](./images/smilies/icon_e_smile.gif)
Currently :
Code: Select all
player.clean_cursor()
if not player.cursor_stack.valid_for_read then
--code
end
Code: Select all
if player.clean_cursor() then
--code
end
Code: Select all
player.clean_cursor()
if not player.cursor_stack.valid_for_read then
--code
end
Code: Select all
if player.clean_cursor() then
--code
end