diff --git a/imgs/icons/10160.png b/imgs/icons/10160.png new file mode 100644 index 000000000..ce1558e0b Binary files /dev/null and b/imgs/icons/10160.png differ diff --git a/imgs/icons/10851.png b/imgs/icons/10851.png new file mode 100644 index 000000000..30642ceb3 Binary files /dev/null and b/imgs/icons/10851.png differ diff --git a/imgs/icons/21785.png b/imgs/icons/21785.png new file mode 100644 index 000000000..d52e7c71d Binary files /dev/null and b/imgs/icons/21785.png differ diff --git a/imgs/icons/22029.png b/imgs/icons/22029.png new file mode 100644 index 000000000..a5e2f7eca Binary files /dev/null and b/imgs/icons/22029.png differ diff --git a/imgs/icons/22030.png b/imgs/icons/22030.png new file mode 100644 index 000000000..627468bb9 Binary files /dev/null and b/imgs/icons/22030.png differ diff --git a/imgs/icons/22031.png b/imgs/icons/22031.png new file mode 100644 index 000000000..f9ffc890b Binary files /dev/null and b/imgs/icons/22031.png differ diff --git a/imgs/icons/22034.png b/imgs/icons/22034.png new file mode 100644 index 000000000..aa3e8941f Binary files /dev/null and b/imgs/icons/22034.png differ diff --git a/imgs/icons/22036.png b/imgs/icons/22036.png new file mode 100644 index 000000000..7de00e638 Binary files /dev/null and b/imgs/icons/22036.png differ diff --git a/imgs/icons/22041.png b/imgs/icons/22041.png new file mode 100644 index 000000000..560421e25 Binary files /dev/null and b/imgs/icons/22041.png differ diff --git a/scripts/icons_update.py b/scripts/icons_update.py index 7205e3e08..d5cb498db 100644 --- a/scripts/icons_update.py +++ b/scripts/icons_update.py @@ -192,7 +192,10 @@ if toadd: print(('Adding {} icons...'.format(len(toadd)))) missing = set() for fname in sorted(toadd): - icon = icon_json[str(fname)] + icon = icon_json.get(str(fname), None) + if icon is None: + print("Can't find iconID {}".format(fname)) + continue key = icon['iconFile'].lower() icon = get_icon_file(key, ICON_SIZE) if icon is None: