mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2025-11-21 08:56:13 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
32729fe38e |
@@ -1,6 +1,6 @@
|
|||||||
#  Exiled Exchange 2
|
#  Exiled Exchange 2
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ export default defineConfig({
|
|||||||
},
|
},
|
||||||
themeConfig: {
|
themeConfig: {
|
||||||
// logo: 'TODO', https://github.com/vuejs/vitepress/issues/1401
|
// logo: 'TODO', https://github.com/vuejs/vitepress/issues/1401
|
||||||
appVersion: '0.6.0',
|
appVersion: '0.6.1',
|
||||||
github: {
|
github: {
|
||||||
releasesUrl: 'https://github.com/Kvan7/Exiled-Exchange-2/releases'
|
releasesUrl: 'https://github.com/Kvan7/Exiled-Exchange-2/releases'
|
||||||
},
|
},
|
||||||
|
|||||||
6
main/package-lock.json
generated
6
main/package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "exiled-exchange-2",
|
"name": "exiled-exchange-2",
|
||||||
"version": "0.6.0",
|
"version": "0.6.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "exiled-exchange-2",
|
"name": "exiled-exchange-2",
|
||||||
"version": "0.6.0",
|
"version": "0.6.1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"electron-overlay-window": "3.3.0",
|
"electron-overlay-window": "3.3.0",
|
||||||
"uiohook-napi": "1.5.x"
|
"uiohook-napi": "1.5.x"
|
||||||
@@ -5754,4 +5754,4 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "exiled-exchange-2",
|
"name": "exiled-exchange-2",
|
||||||
"version": "0.6.0",
|
"version": "0.6.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "node build/script.mjs",
|
"dev": "node build/script.mjs",
|
||||||
|
|||||||
@@ -249,7 +249,10 @@ export function tryParseTranslation(
|
|||||||
(implicitTestString in item.info.unique.stats ||
|
(implicitTestString in item.info.unique.stats ||
|
||||||
negatedImplicitTestString in item.info.unique.stats)
|
negatedImplicitTestString in item.info.unique.stats)
|
||||||
) {
|
) {
|
||||||
if (negatedImplicitTestString in item.info.unique.stats) {
|
if (
|
||||||
|
negatedImplicitTestString !== implicitTestString &&
|
||||||
|
negatedImplicitTestString in item.info.unique.stats
|
||||||
|
) {
|
||||||
const thisModValues =
|
const thisModValues =
|
||||||
item.info.unique.stats[negatedImplicitTestString];
|
item.info.unique.stats[negatedImplicitTestString];
|
||||||
combination.values.forEach((stat, index) => {
|
combination.values.forEach((stat, index) => {
|
||||||
@@ -284,7 +287,10 @@ export function tryParseTranslation(
|
|||||||
refName in item.info.unique.stats ||
|
refName in item.info.unique.stats ||
|
||||||
negatedRefName in item.info.unique.stats
|
negatedRefName in item.info.unique.stats
|
||||||
) {
|
) {
|
||||||
if (negatedRefName in item.info.unique.stats) {
|
if (
|
||||||
|
negatedRefName !== refName &&
|
||||||
|
negatedRefName in item.info.unique.stats
|
||||||
|
) {
|
||||||
const thisModValues = item.info.unique.stats[negatedRefName];
|
const thisModValues = item.info.unique.stats[negatedRefName];
|
||||||
combination.values.forEach((stat, index) => {
|
combination.values.forEach((stat, index) => {
|
||||||
const tierBounds = thisModValues[index];
|
const tierBounds = thisModValues[index];
|
||||||
|
|||||||
Reference in New Issue
Block a user