File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 394
394
"$(inherited)",
395
395
"@executable_path/../Frameworks",
396
396
);
397
- MARKETING_VERSION = 1.1.0 ;
397
+ MARKETING_VERSION = 1.1.1 ;
398
398
PRODUCT_BUNDLE_IDENTIFIER = dev.thecodewarrior.SwiftSplit;
399
399
PRODUCT_NAME = "$(TARGET_NAME)";
400
400
SWIFT_OBJC_BRIDGING_HEADER = "SwiftSplit/SwiftSplit-Bridging-Header.h";
421
421
"$(inherited)",
422
422
"@executable_path/../Frameworks",
423
423
);
424
- MARKETING_VERSION = 1.1.0 ;
424
+ MARKETING_VERSION = 1.1.1 ;
425
425
PRODUCT_BUNDLE_IDENTIFIER = dev.thecodewarrior.SwiftSplit;
426
426
PRODUCT_NAME = "$(TARGET_NAME)";
427
427
SWIFT_OBJC_BRIDGING_HEADER = "SwiftSplit/SwiftSplit-Bridging-Header.h";
Original file line number Diff line number Diff line change @@ -53,15 +53,15 @@ class CelesteSplitter {
53
53
let time = routeConfig. useFileTime ? autoSplitterInfo. fileTime : autoSplitterInfo. chapterTime
54
54
server. setGameTime ( seconds: time)
55
55
56
+ processEvents ( events)
57
+
56
58
// when using the chapter time, `timerActive` will be true before the chapter time starts ticking.
57
59
// This is because the *file* timer is active even before the *chapter* timer is active
58
60
let timerActive = autoSplitterInfo. timerActive && time != 0
59
61
if timerActive != gameTimeRunning {
60
62
server. setGameTime ( running: timerActive)
61
63
gameTimeRunning = timerActive
62
64
}
63
-
64
- processEvents ( events)
65
65
return events
66
66
}
67
67
@@ -131,6 +131,7 @@ class CelesteSplitter {
131
131
if routeIndex == 0 {
132
132
server. reset ( )
133
133
server. start ( )
134
+ gameTimeRunning = true
134
135
} else if !nextEvent. starts ( with: " ! " ) {
135
136
server. split ( )
136
137
}
You can’t perform that action at this time.
0 commit comments