Skip to content

Commit

Permalink
[1.48.6] QIS: Health points for .NET fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
TomRobert authored Aug 30, 2024
1 parent a9771aa commit a5a446c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions script.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// @include https://beta.the-west.net*
// @include http*://tw-db.info/*?strana=invent&x=*
// @exclude https://classic.the-west.net*
// @version 1.48.5
// @version 1.48.6
// @supportURL https://github.com/The-West-Scripts/The-West-Essentials/issues
// @icon https://the-west.net/favicon.ico
// @grant none
Expand All @@ -27,7 +27,7 @@
location.href = '/';
} else {
TWX = {
version: '1.48.5',
version: '1.48.6',
langs: {
en: {
language: 'English',
Expand Down Expand Up @@ -7480,7 +7480,7 @@
var skillsL = [];
TWX.QIS = {
buffDesc: function (umt) {
return umt.replace(/\+|\d/g, '').replace(/:.+/, ':').trim();
return umt.replace(/\+|\d/g, '').replace(/:.+/, ':').trim().toLowerCase();
},
useboni: {},
sets: [{
Expand Down Expand Up @@ -7821,7 +7821,7 @@
}
TWX.QIS.useboni.joball = getBuff(descsL.smokedfish[0], 1);
for (var kn in CharacterSkills.keyNames) {
TWX.QIS.useboni[CharacterSkills.keyNames[kn]] = kn;
TWX.QIS.useboni[CharacterSkills.keyNames[kn].toLowerCase()] = kn;
skillsL.push(kn);
}
for (var msp in misSpecs)
Expand Down

0 comments on commit a5a446c

Please sign in to comment.