add extendedMapPopup.png | extendedMapPopup works without premium

This commit is contained in:
Dawid Wysokiński 2020-07-24 14:25:42 +02:00
parent 0f6a6bc8b3
commit c3504b2df4
3 changed files with 6 additions and 4 deletions

View File

@ -435,7 +435,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
// @namespace https://github.com/tribalwarshelp/scripts
// @updateURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedMapPopup.js
// @downloadURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedMapPopup.js
// @version 0.3.0
// @version 0.4.0
// @description Extended Map Popup
// @author Kichiyaki http://dawid-wysokinski.pl/
// @match *://*/game.php*screen=map*
@ -548,7 +548,7 @@ const createDisplayForVillageHandler = cfg => async (e, a, t) => {
TWMap.popup._displayForVillage(e, a, t);
const data = await loadVillageData(parseInt(e.id), {
cacheOnly: true
cacheOnly: window.game_data.features.Premium.active
});
renderAdditionalInfo(data, cfg);
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 KiB

View File

@ -10,7 +10,7 @@ import { setItem, getItem } from './utils/localStorage';
// @namespace https://github.com/tribalwarshelp/scripts
// @updateURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedMapPopup.js
// @downloadURL https://raw.githubusercontent.com/tribalwarshelp/scripts/master/dist/extendedMapPopup.js
// @version 0.3.0
// @version 0.4.0
// @description Extended Map Popup
// @author Kichiyaki http://dawid-wysokinski.pl/
// @match *://*/game.php*screen=map*
@ -159,7 +159,9 @@ const createLoadVillageHandler = (cfg) => async (e) => {
const createDisplayForVillageHandler = (cfg) => async (e, a, t) => {
TWMap.popup._displayForVillage(e, a, t);
const data = await loadVillageData(parseInt(e.id), { cacheOnly: true });
const data = await loadVillageData(parseInt(e.id), {
cacheOnly: window.game_data.features.Premium.active,
});
renderAdditionalInfo(data, cfg);
};