Skip to content

Commit

Permalink
Update Ext_TraitDemoProfessional.uc
Browse files Browse the repository at this point in the history
fix error
  • Loading branch information
zeno0207 authored Aug 21, 2024
1 parent 8d8a20b commit eaa67d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ServerExt/Classes/Ext_TraitDemoProfessional.uc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ static function bool MeetsRequirements(byte Lvl, Ext_PerkBase Perk)
{
local int i;

if (Perk.CurrentLevel<Default.MinLevel || Perk.CurrentPrestige<3)
if (Perk.CurrentLevel<Default.MinLevel || Perk.CurrentPrestige<1)
return false;

if (Lvl==0)
Expand Down Expand Up @@ -43,4 +43,4 @@ defaultproperties
SupportedPerk=class'Ext_PerkDemolition'
DefLevelCosts(0)=100
DefMinLevel=100
}
}

0 comments on commit eaa67d7

Please sign in to comment.