Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepyyapril committed Jan 11, 2025
1 parent 419257f commit 0c6d64f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Content.Server/StationEvents/Events/RandomSentienceRule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,14 @@ protected override void Started(EntityUid uid, RandomSentienceRuleComponent comp

ChatSystem.DispatchStationAnnouncement(
station.Value,
_announcer.GetAnnouncementId(args.RuleId),
("kind1", kind1), ("kind2", kind2), ("kind3", kind3), ("amount", groupList.Count),
Loc.GetString(
"station-event-random-sentience-announcement",
("kind1", kind1),
("kind2", kind2),
("kind3", kind3),
("amount", groupList.Count),
("data", _random.Pick(_prototype.Index<LocalizedDatasetPrototype>("RandomSentienceEventData"))),
("strength", _random.Pick(_prototype.Index<LocalizedDatasetPrototype>("RandomSentienceEventStrength")))
("strength", _random.Pick(_prototype.Index<LocalizedDatasetPrototype>("RandomSentienceEventStrength"))))
);
}
}
}

0 comments on commit 0c6d64f

Please sign in to comment.