Skip to content

Commit

Permalink
Fixed bug with ignored mh files.
Browse files Browse the repository at this point in the history
  • Loading branch information
nokka committed Jul 24, 2020
1 parent c69d1b2 commit 9e51ca1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion d2/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,6 @@ func (s *service) Patch(done chan bool) (<-chan float32, <-chan PatchState) {

if game.OverrideBHCfg {
ignoredMaphackFiles = append(ignoredMaphackFiles, "BH.cfg")
ignoredMaphackFiles = append(ignoredMaphackFiles, "BH_settings.cfg")
}

// Reset the maphack versions, to avoid rogue files and duplicates.
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ func main() {
var (
debugMode = envBool("DEBUG_MODE", false)
environment = envString("ENVIRONMENT", "production")
buildVersion = envString("BUILD_VERSION", "v1.1.1")
buildVersion = envString("BUILD_VERSION", "v1.1.2")
)

// Set app context.
core.QCoreApplication_SetApplicationName("Slashdiablo launcher")
core.QCoreApplication_SetOrganizationName("slashdiablo.net")
core.QCoreApplication_SetOrganizationDomain("slashdiablo.net")
core.QCoreApplication_SetApplicationVersion("1.1.1")
core.QCoreApplication_SetApplicationVersion("1.1.2")

// Enable high dpi scaling, useful for devices with high pixel density displays.
core.QCoreApplication_SetAttribute(core.Qt__AA_EnableHighDpiScaling, true)
Expand Down

0 comments on commit 9e51ca1

Please sign in to comment.