Skip to content

Commit

Permalink
Merge pull request Civ13#2390 from Bierkraan/working-branch
Browse files Browse the repository at this point in the history
Fix GL
  • Loading branch information
Bierkraan authored Oct 2, 2023
2 parents 08b1269 + 0aead54 commit 173b910
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/1713/weapons/guns/grenade_launcher.dm
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,12 @@
/obj/item/weapon/gun/launcher/grenade/standalone/consume_next_projectile()
if (cover_opened)
return
else if (chambered || !cover_opened)
if (chambered)
if (ishuman(src.loc))
chambered.dir = src.loc.dir
chambered.det_time = 15
chambered.activate(null)
return chambered | !cover_opened
return chambered

//load and unload directly into chambered
/obj/item/weapon/gun/launcher/grenade/standalone/load(obj/item/weapon/grenade/G, mob/user)
Expand Down

0 comments on commit 173b910

Please sign in to comment.