Skip to content

Commit c9fdac9

Browse files
authored
BaseSpawnEntityEntityEffect scales its spawned entities by default (space-wizards#41091)
* make basically all entity spawning reactions scaling * Intelligence
1 parent c01ec29 commit c9fdac9

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Content.Shared/EntityEffects/Effects/EntitySpawning/BaseSpawnEntityEntityEffect.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ public abstract partial class BaseSpawnEntityEntityEffect<T> : EntityEffectBase<
2828
[DataField]
2929
public bool Predicted = true;
3030

31+
/// <inheritdoc cref="EntityEffect.Scaling"/>
32+
public override bool Scaling => true;
33+
3134
public override string EntityEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys)
3235
=> Loc.GetString("entity-effect-guidebook-spawn-entity",
3336
("chance", Probability),

0 commit comments

Comments
 (0)