diff --git a/overviewer_core/aux_files/genPOI.py b/overviewer_core/aux_files/genPOI.py index abb7544..21a0784 100755 --- a/overviewer_core/aux_files/genPOI.py +++ b/overviewer_core/aux_files/genPOI.py @@ -513,7 +513,8 @@ def main(): logging.info("Done handling POIs") logging.info("Writing out javascript files") - PlayerDict.save_cache(destdir) + if not options.skipplayers: + PlayerDict.save_cache(destdir) with open(os.path.join(destdir, "markersDB.js"), "w") as output: output.write("var markersDB=")