Skip to content

Commit dab787b

Browse files
committed
Don't repeat first footfall after it has already been announced once.
1 parent c60ed5f commit dab787b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

EddiCore/EDDI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1289,7 +1289,7 @@ await updateCurrentStellarBodyAsync( @event.bodyname, @event.bodyId, @event.syst
12891289
var body = CurrentStarSystem?.BodyWithID( @event.bodyId );
12901290
if ( body != null )
12911291
{
1292-
if (body.alreadyfirstfootfalled == false)
1292+
if ( body.alreadyfirstfootfalled == false && body.footfalledDateTime is null )
12931293
{
12941294
// This is a first footfall event
12951295
@event.firstfootfall = true;

0 commit comments

Comments
 (0)