diff --git a/files/classes/user.py b/files/classes/user.py index 749f31104..faa8af217 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -260,8 +260,8 @@ class User(Base): return '' if HOLIDAY_EVENT: - from files.events.helpers.const import EVENT_FORCED_HAT - if EVENT_FORCED_HAT: return EVENT_FORCED_HAT + from files.events.helpers.const import EVENT_FORCED_HATS + if EVENT_FORCED_HATS: return random.choice(EVENT_FORCED_HATS) if self.is_cakeday: return '/i/hats/Cakeday.webp' diff --git a/files/events/assets/images/hats/1.png b/files/events/assets/images/hats/1.png new file mode 100644 index 000000000..f3a898519 Binary files /dev/null and b/files/events/assets/images/hats/1.png differ diff --git a/files/events/assets/images/hats/2.png b/files/events/assets/images/hats/2.png new file mode 100644 index 000000000..eda869f61 Binary files /dev/null and b/files/events/assets/images/hats/2.png differ diff --git a/files/events/assets/images/hats/3.png b/files/events/assets/images/hats/3.png new file mode 100644 index 000000000..3da243231 Binary files /dev/null and b/files/events/assets/images/hats/3.png differ diff --git a/files/events/helpers/const.py b/files/events/helpers/const.py index 152fdabfc..4cc061d75 100644 --- a/files/events/helpers/const.py +++ b/files/events/helpers/const.py @@ -50,4 +50,6 @@ EVENT_AWARDS = { "cosmetic": True }, } -EVENT_FORCED_HAT = '/i/hats/Santa Hat I.webp?h=7' +EVENT_FORCED_HATS = ['/i/hats/Santa Hat III.webp?h=1', \ + '/i/hats/Winter Cap.webp?h=1', \ + '/i/hats/Present Bot.webp?h=1']