updated lite

This commit is contained in:
Concedo
2026-05-27 18:24:29 +08:00
parent e611110abf
commit 542182dd21
+2 -2
View File
@@ -25627,14 +25627,14 @@ Current version indicated by LITEVER below.
if(curr.myturn)
{
fulltxt += `<hr style="margin-top: 12px; margin-bottom: 12px;"><span class="color_kobotext"><span class="humansquare" onclick="classic_click_turn(this,${i})"></span>${currmsg}</span>`;
fulltxt += `<hr aria-label="User Turn ${i}" style="margin-top: 12px; margin-bottom: 12px;"><span class="color_kobotext"><span class="humansquare" onclick="classic_click_turn(this,${i})"></span>${currmsg}</span>`;
}
else
{
if (i == 0) {
fulltxt += `${currmsg}`;
} else {
fulltxt += `<hr style="margin-top: 12px; margin-bottom: 12px;"><span><span class="nikosquare" onclick="classic_click_turn(this,${i})"></span>${currmsg}</span>`;
fulltxt += `<hr aria-label="AI Turn ${i}" style="margin-top: 12px; margin-bottom: 12px;"><span><span class="nikosquare" onclick="classic_click_turn(this,${i})"></span>${currmsg}</span>`;
}
}
}