Difference between revisions of "HasPerk - Actor"
Jump to navigation
Jump to search
m
Added parentheses to Game.GetPlayer
imported>Rhavlovick m (1 revision: Clobber re-import by Henning) |
imported>Ingevi m (Added parentheses to Game.GetPlayer) |
||
Line 19: | Line 19: | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
; Does the player have the super perk? | ; Does the player have the super perk? | ||
if (Game.GetPlayer.HasPerk(SuperPerk)) | if (Game.GetPlayer().HasPerk(SuperPerk)) | ||
Debug.Trace("The player has the super perk") | Debug.Trace("The player has the super perk") | ||
endIf | endIf |