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

|
||||

|
||||

|
||||

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