Fix anomaly vessels not generating points (#14137)

This commit is contained in:
Nemanja
2023-02-15 23:16:20 -05:00
committed by GitHub
parent 6b381f7304
commit 9ed3127ed5
4 changed files with 18 additions and 15 deletions

View File

@@ -140,7 +140,7 @@ public sealed partial class ResearchSystem
if (!CanRun(uid))
return points;
var ev = new ResearchServerGetPointsPerSecondEvent(component.Owner, points);
var ev = new ResearchServerGetPointsPerSecondEvent(uid, points);
foreach (var client in component.Clients)
{
RaiseLocalEvent(client, ref ev);