Missed removing these
This commit is contained in:
parent
6ad0d2ca2b
commit
6dd0bd0e8e
|
@ -7,7 +7,7 @@ import {
|
|||
import config from '../../config.ts';
|
||||
|
||||
import { RollModifiers } from '../mod.d.ts';
|
||||
import { CountDetails, ReturnData, SolvedRoll, SolvedStep, RollType } from './solver.d.ts';
|
||||
import { CountDetails, ReturnData, SolvedRoll, SolvedStep } from './solver.d.ts';
|
||||
import { compareTotalRolls, escapeCharacters, loggingEnabled } from './rollUtils.ts';
|
||||
import { formatRoll } from './rollFormatter.ts';
|
||||
import { fullSolver } from './solver.ts';
|
||||
|
|
|
@ -10,7 +10,7 @@ import {
|
|||
LT,
|
||||
} from '../../deps.ts';
|
||||
|
||||
import { SolvedStep, RollType } from './solver.d.ts';
|
||||
import { SolvedStep } from './solver.d.ts';
|
||||
import { loggingEnabled } from './rollUtils.ts';
|
||||
|
||||
// fullSolver(conf, wrapDetails) returns one condensed SolvedStep
|
||||
|
@ -19,7 +19,6 @@ export const fullSolver = (conf: (string | number | SolvedStep)[], wrapDetails:
|
|||
// Initialize PEMDAS
|
||||
const signs = ['^', '*', '/', '%', '+', '-'];
|
||||
const stepSolve = {
|
||||
rollType: <RollType> '',
|
||||
total: 0,
|
||||
details: '',
|
||||
containsCrit: false,
|
||||
|
|
Loading…
Reference in New Issue