Fix superfluous decision re-evaluations

This commit is contained in:
Daniel
2020-05-20 15:14:48 +02:00
parent c8223f1a63
commit e464ee136c
2 changed files with 14 additions and 1 deletions

View File

@@ -178,7 +178,8 @@ func NewConnectionFromFirstPacket(pkt packet.Packet) *Connection {
// remote endpoint
Entity: entity,
// meta
Started: time.Now().Unix(),
Started: time.Now().Unix(),
profileRevisionCounter: proc.Profile().RevisionCnt(),
}
}