patch(rng-seam): make StableRandomDouble/StableRandomOnlySelf virtual (DP5, zero logic change)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1583,7 +1583,7 @@ public class BattleManagerBase
|
||||
return (int)Math.Floor((double)val * randomResult);
|
||||
}
|
||||
|
||||
public double StableRandomDouble()
|
||||
public virtual double StableRandomDouble()
|
||||
{
|
||||
if (IsForecast)
|
||||
{
|
||||
@@ -1594,7 +1594,7 @@ public class BattleManagerBase
|
||||
return randomResult;
|
||||
}
|
||||
|
||||
public int StableRandomOnlySelf(int val)
|
||||
public virtual int StableRandomOnlySelf(int val)
|
||||
{
|
||||
if (IsForecast)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user