Fix UninitializedSaveTest prototypes (#16144)

This commit is contained in:
Leon Friedrich
2023-05-06 17:11:01 +12:00
committed by GitHub
parent ddfc4f8b9e
commit 9094727842
25 changed files with 71 additions and 103 deletions

View File

@@ -210,8 +210,8 @@ namespace Content.Server.Dragon
// We can't predict the rift being destroyed anyway so no point adding weakened to shared.
dragon.WeakenedAccumulator = dragon.WeakenedDuration;
_movement.RefreshMovementSpeedModifiers(component.Dragon);
_popupSystem.PopupEntity(Loc.GetString("carp-rift-destroyed"), component.Dragon, component.Dragon);
_movement.RefreshMovementSpeedModifiers(component.Dragon.Value);
_popupSystem.PopupEntity(Loc.GetString("carp-rift-destroyed"), component.Dragon.Value, component.Dragon.Value);
}
}