Skip to content

Commit

Permalink
Merge pull request #632 from Monkestation/lmenvs-patch-1
Browse files Browse the repository at this point in the history
Fix donator items not able to load
  • Loading branch information
dwasint authored Dec 4, 2023
2 parents ff69738 + 367b408 commit 4bda275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monkestation/code/modules/loadouts/loadout_middleware.dm
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
formatted_list.len--
continue
if(item.donator_only) //These checks are also performed in the backend.
if((!preferences.parent.patreon?.is_donator() || !preferences.parent.twitch?.is_donator())&& !is_admin(preferences.parent))
if((!preferences.parent.patreon?.is_donator() && !preferences.parent.twitch?.is_donator()) && !is_admin(preferences.parent))
formatted_list.len--
continue

Expand Down

0 comments on commit 4bda275

Please sign in to comment.