Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
Signed-off-by: ClaytonTDM <claytontdm@gmail.com>
  • Loading branch information
ClaytonTDM committed Oct 7, 2024
1 parent 585a8bb commit 55f0493
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 13 deletions.
2 changes: 1 addition & 1 deletion game/UI.css
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ td.HandBookZombie {
#sSunNum {
text-align: center;
position: absolute;
top: 4px;
top: 7px;
left: 43px;
width: 68px;
font-family: Verdana;
Expand Down
36 changes: 25 additions & 11 deletions game/iframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -665,17 +665,31 @@
s = "";
for (n = 0; n < l; n += 3) {
i % 5 == 0 && (s += "<tr>");
s +=
'<td height="139" valign="top" onclick="SelectModal(\'' +
ar[n] +
'\')"><div><img src="images/interface/' +
ar[n + 2] +
'"></div><div class="list">' +
ar[n + 1] +
"</div></td>";
(i + 1) % 5 == 0
? ((s += "</tr>"), (i = 0))
: ++i;
if (ar[n] == "izombiemenu") {
s +=
'<td height="139" valign="top" onmousemove="ViewGenericMouseover(`<span style=&quot;color:red&quot;><b>NEW!</b></span> Custom I, Zombie Levels!`,event)" onmouseout="SetHidden($(\'dTitle\'))" onclick="SelectModal(\'' +
ar[n] +
'\')"><div><img src="images/interface/' +
ar[n + 2] +
'"></div><div class="list">' +
ar[n + 1] +
"</div></td>";
(i + 1) % 5 == 0
? ((s += "</tr>"), (i = 0))
: ++i;
} else {
s +=
'<td height="139" valign="top" onclick="SelectModal(\'' +
ar[n] +
'\')"><div><img src="images/interface/' +
ar[n + 2] +
'"></div><div class="list">' +
ar[n + 1] +
"</div></td>";
(i + 1) % 5 == 0
? ((s += "</tr>"), (i = 0))
: ++i;
}
}
if (i != 0) {
while (--i) s += "<td> </td>";
Expand Down
2 changes: 1 addition & 1 deletion game/level/0.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@ function runIzlCheck() {
}
}
}
runIzlCheck();
runIzlCheck();

0 comments on commit 55f0493

Please sign in to comment.