mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2025-02-18 00:20:13 +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, {
|
createInCategory(AutomatorCurrency, "EP", /ep/i, {
|
||||||
extraCategories: [TTCurrency],
|
extraCategories: [TTCurrency],
|
||||||
$buyTT: () => TimeTheorems.buyWithEP(true),
|
$buyTT: () => TimeTheorems.buyOne(true, "ep"),
|
||||||
$getter: () => Currency.eternityPoints.value
|
$getter: () => Currency.eternityPoints.value
|
||||||
});
|
});
|
||||||
createInCategory(AutomatorCurrency, "IP", /ip/i, {
|
createInCategory(AutomatorCurrency, "IP", /ip/i, {
|
||||||
extraCategories: [TTCurrency],
|
extraCategories: [TTCurrency],
|
||||||
$buyTT: () => TimeTheorems.buyWithIP(true),
|
$buyTT: () => TimeTheorems.buyOne(true, "ip"),
|
||||||
$getter: () => Currency.infinityPoints.value
|
$getter: () => Currency.infinityPoints.value
|
||||||
});
|
});
|
||||||
createInCategory(AutomatorCurrency, "AM", /am/i, {
|
createInCategory(AutomatorCurrency, "AM", /am/i, {
|
||||||
extraCategories: [TTCurrency],
|
extraCategories: [TTCurrency],
|
||||||
$buyTT: () => TimeTheorems.buyWithAntimatter(true),
|
$buyTT: () => TimeTheorems.buyOne(true, "am"),
|
||||||
$getter: () => Currency.antimatter.value
|
$getter: () => Currency.antimatter.value
|
||||||
});
|
});
|
||||||
createInCategory(AutomatorCurrency, "DT", /dt/i, { $getter: () => Currency.dilatedTime.value });
|
createInCategory(AutomatorCurrency, "DT", /dt/i, { $getter: () => Currency.dilatedTime.value });
|
||||||
|
Loading…
Reference in New Issue
Block a user