"New player" admin logging improvements (#35961)
* Initial commit * Adjust a whoooole bunch of logs * Also spears * Track going crit * Review fix * Review fixes
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
using Content.Server.Botany.Components;
|
||||
using Content.Server.Botany.Systems;
|
||||
using Content.Shared.Atmos;
|
||||
using Content.Shared.Database;
|
||||
using Content.Shared.EntityEffects;
|
||||
using Content.Shared.Random;
|
||||
using Robust.Shared.Audio;
|
||||
@@ -243,6 +244,18 @@ public partial class SeedData
|
||||
[DataField(customTypeSerializer: typeof(PrototypeIdListSerializer<SeedPrototype>))]
|
||||
public List<string> MutationPrototypes = new();
|
||||
|
||||
/// <summary>
|
||||
/// Log impact for when the seed is planted.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public LogImpact? PlantLogImpact = null;
|
||||
|
||||
/// <summary>
|
||||
/// Log impact for when the seed is harvested.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public LogImpact? HarvestLogImpact = null;
|
||||
|
||||
public SeedData Clone()
|
||||
{
|
||||
DebugTools.Assert(!Immutable, "There should be no need to clone an immutable seed.");
|
||||
|
||||
Reference in New Issue
Block a user