Fixes revolver reloading, again (#91414)

## About The Pull Request

Closes #91110, broke due to lazyloaded bullets being considered empty

This needs a unit test, maybe will write one later in a separate PR

## Changelog
🆑
fix: Fixed revolver reloading, again
/🆑
This commit is contained in:
SmArtKar
2025-06-05 19:52:00 -04:00
committed by Roxy
parent 69a8cdf166
commit 0bcbe8767d
2 changed files with 1 additions and 3 deletions
@@ -44,7 +44,7 @@
for(var/i in 1 to stored_ammo.len)
var/obj/item/ammo_casing/bullet = stored_ammo[i]
if (istype(bullet) && bullet.loaded_projectile)
if (!istype(bullet) || bullet.loaded_projectile)
continue
// found a spent ammo
stored_ammo[i] = R