mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-25 05:32:17 +00:00
Merge pull request #1718 from IvarK/small-automator-tt-bug
Small automator TT bug
This commit is contained in:
commit
40e09b00bc
@ -101,17 +101,17 @@ const AutomatorLexer = (() => {
|
||||
|
||||
createInCategory(AutomatorCurrency, "EP", /ep/i, {
|
||||
extraCategories: [TTCurrency],
|
||||
$buyTT: () => TimeTheorems.buyWithEP(true),
|
||||
$buyTT: () => TimeTheorems.buyOne(true, "ep"),
|
||||
$getter: () => Currency.eternityPoints.value
|
||||
});
|
||||
createInCategory(AutomatorCurrency, "IP", /ip/i, {
|
||||
extraCategories: [TTCurrency],
|
||||
$buyTT: () => TimeTheorems.buyWithIP(true),
|
||||
$buyTT: () => TimeTheorems.buyOne(true, "ip"),
|
||||
$getter: () => Currency.infinityPoints.value
|
||||
});
|
||||
createInCategory(AutomatorCurrency, "AM", /am/i, {
|
||||
extraCategories: [TTCurrency],
|
||||
$buyTT: () => TimeTheorems.buyWithAntimatter(true),
|
||||
$buyTT: () => TimeTheorems.buyOne(true, "am"),
|
||||
$getter: () => Currency.antimatter.value
|
||||
});
|
||||
createInCategory(AutomatorCurrency, "DT", /dt/i, { $getter: () => Currency.dilatedTime.value });
|
||||
|
Loading…
Reference in New Issue
Block a user