From 549c0aebd15d53efcb2aea5568255981b89b2d15 Mon Sep 17 00:00:00 2001 From: OmegaK2 Date: Sat, 5 Sep 2015 22:50:45 +0200 Subject: [PATCH] note about GGG in LICENSE, fixed bug in gems.py --- LICENSE | 6 ++++++ PyPoE/cli/exporter/wiki/parsers/gems.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 45ce9a5c..2a8e29c4 100644 --- a/LICENSE +++ b/LICENSE @@ -20,3 +20,9 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------------------------------------------------ + +Additionally please note that many of the file formats, and in particular +the contents of extracted files are owned by Grinding Gear Games and shall +not be used or published without being in accordance with their terms of use. + diff --git a/PyPoE/cli/exporter/wiki/parsers/gems.py b/PyPoE/cli/exporter/wiki/parsers/gems.py index aaf0e992..7223eb6c 100644 --- a/PyPoE/cli/exporter/wiki/parsers/gems.py +++ b/PyPoE/cli/exporter/wiki/parsers/gems.py @@ -832,7 +832,7 @@ def level_progression(self, parsed_args): if monster_stat_index != -1: minion_level = row['Stat%sValue' % monster_stat_index] else: - minion_level = row['Level'] + minion_level = row['LevelRequirement'] out.append('| %s\n' % minion_level) for mv in monster_varieties: dmg, aspd, life = self._get_monster_stats(mv, minion_level)