mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-03-10 08:31:42 +00:00
Implement default knife display logic in index.php to ensure a knife is always shown, enhancing user experience by providing a fallback option when no knife is selected. Update HTML comments for clarity.
This commit is contained in:
@@ -234,9 +234,15 @@ if (isset($_SESSION['steamid'])) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If no knife selected at all, show default knife
|
||||||
|
if (!$displayKnifeSkin && !$displayKnife && isset($knifes[0])) {
|
||||||
|
$displayKnife = $knifes[0]; // Default knife
|
||||||
|
$knifeSource = 'default';
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?php if ($displayKnifeSkin || $displayKnife): ?>
|
<!-- Always show a knife (either selected or default) -->
|
||||||
<div class="loadout-item" data-weapon-type="knife">
|
<div class="loadout-item" data-weapon-type="knife">
|
||||||
<div class="item-image-container">
|
<div class="item-image-container">
|
||||||
<?php if ($knifeSource == 'skin'): ?>
|
<?php if ($knifeSource == 'skin'): ?>
|
||||||
@@ -259,7 +265,6 @@ if (isset($_SESSION['steamid'])) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
|
||||||
|
|
||||||
<!-- Show all weapons (exclude knives) - either with custom skin or default -->
|
<!-- Show all weapons (exclude knives) - either with custom skin or default -->
|
||||||
<?php foreach ($weapons as $defindex => $weapon): ?>
|
<?php foreach ($weapons as $defindex => $weapon): ?>
|
||||||
|
|||||||
Reference in New Issue
Block a user