- fix: Antag granting fix. (#74)

This commit is contained in:
Aviu00
2024-02-16 03:08:52 +09:00
committed by GitHub
parent f7edea42cd
commit 7a0ece8772

View File

@@ -221,7 +221,7 @@ public sealed class MeatyOreStoreSystem : EntitySystem
return;
var fake = _roleSystem.MindIsAntagonist(targetMind.Mind.Value) || _jobSystem.CanBeAntag(mindComponent.Session);
var fake = _roleSystem.MindIsAntagonist(targetMind.Mind.Value) || !_jobSystem.CanBeAntag(mindComponent.Session);
var ckey = userActorComponent.PlayerSession.Name;
var grant = user == target;