Skip to content

Commit

Permalink
Fixing event girl data collection after 15/02 game update
Browse files Browse the repository at this point in the history
  • Loading branch information
Numbers committed Feb 15, 2023
1 parent 56aa145 commit a249526
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
1.32.4: Fixing event girl data collection after 15/02 game update
1.32.3: Fixing Gem Stock placement after upcoming harem screen update
1.32.2: Fixing GirlDictionaryCollector for the EpP draft two-step process
1.32.1: Fixing hiding "Claim All" button on CxH.
Expand Down
6 changes: 3 additions & 3 deletions dist/hh-plus-plus.dev.user.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/hh-plus-plus.meta.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Hentai Heroes++ BDSM version
// @description Adding things here and there in the Hentai Heroes game. Also supports HHCore-based games such as GH and CxH.
// @version 1.32.3
// @version 1.32.4
// @match https://*.hentaiheroes.com/*
// @match https://nutaku.haremheroes.com/*
// @match https://*.gayharem.com/*
Expand Down
4 changes: 2 additions & 2 deletions dist/hh-plus-plus.user.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hh-plus-plus",
"version": "1.32.3",
"version": "1.32.4",
"description": "Adding things here and there in the Hentai Heroes game. Also supports HHCore-based games such as GH and CxH.",
"private": "true",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/collectors/EventVillainsCollector.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* global eventGirls, server_now_ts */
/* global event_girls, server_now_ts */
import { lsKeys } from '../common/Constants'
import Helpers from '../common/Helpers'

Expand Down Expand Up @@ -38,7 +38,7 @@ class EventVillainsCollector {

const eventTrolls = []

eventGirls.forEach(girl => {
event_girls.forEach(girl => {
const { id_girl: id, source, rarity } = girl
if (source.name !== 'event_troll') {
return
Expand Down
4 changes: 2 additions & 2 deletions src/collectors/GirlDictionaryCollector.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* global girlsDataList, eventGirls, clubChampionsData */
/* global girlsDataList, event_girls, clubChampionsData */
import Helpers from '../common/Helpers'

let girlDictionary
Expand Down Expand Up @@ -107,7 +107,7 @@ class GirlDictionaryCollector {
}

static collectFromEventWidget() {
eventGirls.forEach(({ id_girl: id, name, shards, class: girlClass, rarity }) => {
event_girls.forEach(({ id_girl: id, name, shards, class: girlClass, rarity }) => {
if (shards === undefined) {
shards = 100
}
Expand Down

0 comments on commit a249526

Please sign in to comment.