Skip to content

Commit

Permalink
[MIRROR] Plasmamen become humans in the deathmatch (#1494) (#2455)
Browse files Browse the repository at this point in the history
* Plasmamen become humans in the deathmatch (#82003)

## About The Pull Request

Does what #81629 intended by fixing a broken conditional.

## Why It's Good For The Game

People should be able to play the minigames.

## Changelog

:cl:
fix: Plasmamen will become human in the deathmatch so they don't
instantly die
/:cl:

* Plasmamen become humans in the deathmatch

---------

Co-authored-by: NovaBot <[email protected]>
Co-authored-by: StaringGasMask <[email protected]>
  • Loading branch information
3 people authored Mar 18, 2024
1 parent c3672b6 commit d81c078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/deathmatch/deathmatch_loadouts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

if(!isnull(species_override))
user.set_species(species_override)
else if (istype(user.dna.species.outfit_important_for_life)) //plasmamen get lit on fire and die
else if (!isnull(user.dna.species.outfit_important_for_life)) //plasmamen get lit on fire and die
user.set_species(/datum/species/human)
for(var/datum/action/act as anything in granted_spells)
var/datum/action/new_ability = new act(user)
Expand Down

0 comments on commit d81c078

Please sign in to comment.