Remove redundant condition in else branch

Yep.
This commit is contained in:
Salman Alshamrani 2024-10-25 23:15:16 -04:00
parent 1d559b2cad
commit 0e65655fef
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ protected override void Update()
case PlacementBlueprint.PlacementState.Waiting:
if (!Composer.CursorInPlacementArea)
CurrentPlacement.Hide();
else if (Composer.CursorInPlacementArea)
else
CurrentPlacement.Show();
break;