Skip to content

Commit

Permalink
Fixes make cultist admin verb to act on target not self
Browse files Browse the repository at this point in the history
  • Loading branch information
rbertoche committed Nov 27, 2024
1 parent 39f4ad8 commit a4cd418
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ private void AddAntagVerbs(GetVerbsEvent<Verb> args)
Icon = new SpriteSpecifier.Rsi(new("/Textures/Objects/Weapons/Melee/cult_dagger.rsi"), "icon"),
Act = () =>
{
_antag.ForceMakeAntag<BloodCultRuleComponent>(player, DefaultBloodCultRule);
_antag.ForceMakeAntag<BloodCultRuleComponent>(targetPlayer, DefaultBloodCultRule);
},
Impact = LogImpact.High,
Message = Loc.GetString("admin-verb-make-blood-cultist"),
Expand Down

0 comments on commit a4cd418

Please sign in to comment.