View Bug Report
nil comparison with one stable slot
Bug #: 110
File: Mount Feed Timer
Date: 04/10/14 01:03 PM
By: facit
Status: Fixed
If you have only one stable slot, you get a bug that says you are trying to compare to nil. If you change line 99 "if (minitimer > temp_timer[nb_slots]) then" to "if (temp_timer[nb_slots] ~= nil and minitimer > temp_timer[nb_slots]) then" it seems to work.

RSS 2.0 Feed for Bug CommentsNotes Sort Options
By: aTo - 04/10/14 01:32 PM
Thx, fixed