Skip to content

Commit

Permalink
TGS Test Merge (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgstation-server committed Feb 4, 2025
2 parents 3ad37f8 + d121df0 commit b4bf38f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/game/objects/items/rogueweapons/ranged/bows.dm
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,9 @@
if(mastermob && chargetime)
var/newtime = 0
//skill block
newtime = newtime + 10
newtime = newtime - (mastermob.mind.get_skill_level(/datum/skill/combat/bows) * (10/6))
if(mastermob.mind) // REDMOON ADD - фикс рантайма, когда стреляют мобы без игрока
newtime = newtime + 10
newtime = newtime - (mastermob.mind.get_skill_level(/datum/skill/combat/bows) * (10/6))
//str block //rtd replace 10 with drawdiff on bows that are hard and scale str more (10/20 = 0.5)
newtime = newtime + 10
newtime = newtime - (mastermob.STASTR * (10/20))
Expand Down

0 comments on commit b4bf38f

Please sign in to comment.