Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes being able to load a flamer tank with no flamer unit #4825

Merged
merged 7 commits into from
Nov 6, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions code/game/objects/items/storage/large_holster.dm
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,10 @@
if(!ishuman(user) || user.is_mob_incapacitated())
return FALSE

if(user.back != src)
to_chat(usr, "The [src] must be equipped before you can switch types")
Xander3359 marked this conversation as resolved.
Show resolved Hide resolved
return

var/obj/item/weapon/gun/flamer/M240T/F = user.get_active_hand()
if(!istype(F))
Xander3359 marked this conversation as resolved.
Show resolved Hide resolved
to_chat(usr, "You must be holding the M240-T incinerator unit to use [src]")
Xander3359 marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
Loading