eternalUnion / UltraPain

MIT License
9 stars 1 forks source link

[EXTREME BUG] Stalker Radiance is overtuned #93

Open UntotenTheo opened 1 year ago

UntotenTheo commented 1 year ago

Description

Stalkers should normally give T1 radiance across all fields on death/detonation... they don't.

Reproduction

Let a Stalker buff an enemy, ANY enemy.

Plugin versions

Extras

using the alter tool on a bugged buffed enemy reverts it to what seems to be its intended state and the tier of radiance is roughly equal to that of 4x (on a Cerberus, info for both of these credit to Sury)

eternalUnion commented 1 year ago

I am aware of the issue. It is caused by enemy stat editor not overriding stalker buff but amplifying it.

stat override = s stalker buff = b

Expected: final stat = max (s, b)

Reality: final stat = s * b

This should also be a problem with radiant enemies. I will fix it by changing totalStat = totalStat * statOverride to totalStat = totalStat + (statOverride - 1). Problematic line in question

UntotenTheo commented 1 year ago

my b + noted