1
0
Fork 0

remove workaround for broken continue

This commit is contained in:
mfranz 2006-07-03 05:59:24 +00:00
parent cc1623a6af
commit 1c7e2b404a

View file

@ -422,7 +422,7 @@ showWeightDialog = func {
cap = t.getNode("capacity-gal_us", 1).getValue();
# Hack, to ignore the "ghost" tanks created by the C++ code.
if(cap == nil or cap < 1) { i+=1; continue; }
if(cap == nil or cap < 1) { continue; }
title = tcell(fuelTable, "text", i+1, 0);
title.set("label", tname);