Code formatting fixes
This commit is contained in:
@@ -38,7 +38,7 @@ public enum ActionType : byte
|
||||
Veneration,
|
||||
WasteNot,
|
||||
WasteNot2,
|
||||
|
||||
|
||||
StandardTouchCombo,
|
||||
AdvancedTouchCombo,
|
||||
FocusedSynthesisCombo,
|
||||
@@ -48,7 +48,7 @@ public enum ActionType : byte
|
||||
public static class ActionUtils
|
||||
{
|
||||
private static readonly BaseAction[] Actions;
|
||||
|
||||
|
||||
static ActionUtils()
|
||||
{
|
||||
var types = typeof(BaseAction).Assembly.GetTypes()
|
||||
|
||||
@@ -87,7 +87,7 @@ public record struct Effects
|
||||
public readonly byte GetStrength(EffectType effect) =>
|
||||
effect == EffectType.InnerQuiet ? InnerQuiet :
|
||||
(byte)(HasEffect(effect) ? 1 : 0);
|
||||
|
||||
|
||||
[Pure]
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public readonly bool HasEffect(EffectType effect) =>
|
||||
|
||||
@@ -34,7 +34,7 @@ public sealed class SimulationInput
|
||||
|
||||
public SimulationInput(CharacterStats stats, RecipeInfo recipe, int startingQuality = 0, int? seed = null) : this(stats, recipe, startingQuality, seed == null ? new Random() : new Random(seed.Value))
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
public Condition[] AvailableConditions => ConditionUtils.GetPossibleConditions(Recipe.ConditionsFlag);
|
||||
|
||||
Reference in New Issue
Block a user