Skip to content
Snippets Groups Projects
Commit 30ff9de6 authored by Thomas Lake's avatar Thomas Lake :wrench:
Browse files

Fix typo in size comparisons

parent cc4444c7
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@
}else if ($score == 0) {
$output .= " <img src=\"/images/bananas/banana-zero.png\" alt=\"0\" width=\"25px\" height=\"64px\" title=\"0 Bananas\" />\n";
}else {
while ($score >= -250) {
while ($score <= -250) {
$output .= " <img src=\"/images/bananas/banana-g-container.png\" width=\"92\" height=\"64\" alt=\"250\" title=\"Container of 250 Green Bananas\" />\n";
$score += 250;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment