Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/services/cheat_detection/entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
// Logger is declared in database_layer.go

const (
CheatCheckVersion = "beta-2.2.4"
CheatCheckVersion = "beta-2.2.5"
Threshold = 0.05
PlayerThreshold = 0.02
)
Expand Down
6 changes: 5 additions & 1 deletion lib/services/cheat_detection/methods.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ var crafteningStart = time.Date(2023, 9, 15, 13, 54, 00, 0, time.UTC)
var crafteningEnd = time.Date(2023, 9, 18, 4, 00, 9, 0, time.UTC)

// Bubble push-off glitch spread ~2026-06-14 (checkpoint lowmans + Pantheon boss push).
// Patched 2026-06-23 weekly reset (17:00 UTC).
var bubblePushOffGlitchStart = time.Date(2026, time.June, 14, 0, 0, 0, 0, time.UTC)
var bubblePushOffGlitchEnd = time.Date(2026, time.June, 23, 17, 0, 0, 0, time.UTC)

// Skip window for the bad flagging period (prevent recurrence for Sept 16-23, 2025)
var quickfangStart = time.Date(2025, 9, 16, 17, 0, 0, 0, time.UTC)
Expand All @@ -22,7 +24,9 @@ var bowModStart = time.Date(2026, 1, 27, 17, 0, 0, 0, time.UTC)
var bowModEnd = time.Date(2026, 2, 3, 17, 0, 0, 0, time.UTC)

func skipLowmanForKnownStrat(instance *Instance) bool {
if !instance.Completed || !instance.DateCompleted.After(bubblePushOffGlitchStart) {
if !instance.Completed ||
!instance.DateCompleted.After(bubblePushOffGlitchStart) ||
!instance.DateCompleted.Before(bubblePushOffGlitchEnd) {
return false
}

Expand Down
2 changes: 1 addition & 1 deletion tools/cheat-detection/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var logger = logging.NewLogger("cheat-detection")

const (
numBungieWorkers = 15
versionPrefix = "beta-2.2.4"
versionPrefix = "beta-2.2.5"
)

// Instances played by level 3+ accounts that have not yet been checked at the current version.
Expand Down
Loading