This commit is contained in:
Cay 2026-03-13 17:50:48 +00:00
parent 74401b15ae
commit 1197161df4
2 changed files with 5 additions and 1 deletions

View File

@ -275,7 +275,9 @@ body {
/* Slot Basis */ /* Slot Basis */
/* SLOT BASIS */ .slot.has-item .slot-label {
display: none;
}
.slot:hover { .slot:hover {
filter: brightness(1.3); filter: brightness(1.3);

View File

@ -192,6 +192,8 @@ function initDrop() {
slot.appendChild(label); slot.appendChild(label);
} }
slot.classList.add("has-item");
saveEquipment(targetSlot, itemId, itemLevel); saveEquipment(targetSlot, itemId, itemLevel);
}); });
}); });