@@ -55,6 +55,30 @@ internal bool UpdateFound
55
55
_updateFound = value ;
56
56
}
57
57
}
58
+ private int LastLogPullCounter
59
+ {
60
+ get
61
+ {
62
+ return _lastLogPullCounter ;
63
+ }
64
+ set
65
+ {
66
+ _lastLogPullCounter = value ;
67
+ twitchCommandReplacements [ "%pullCounter%" ] = value . ToString ( ) ;
68
+ }
69
+ }
70
+ private string LastLogMessage
71
+ {
72
+ get
73
+ {
74
+ return _lastLogMessage ;
75
+ }
76
+ set
77
+ {
78
+ _lastLogMessage = value ;
79
+ twitchCommandReplacements [ "%lastLog%" ] = value ;
80
+ }
81
+ }
58
82
59
83
// fields
60
84
private readonly FormTwitchNameSetup twitchNameLink ;
@@ -79,32 +103,8 @@ internal bool UpdateFound
79
103
private readonly Dictionary < string , int > uploadFailCounters = [ ] ;
80
104
private int logsCount = 0 ;
81
105
private string _lastLogMessage = "" ;
82
- private string LastLogMessage
83
- {
84
- get
85
- {
86
- return _lastLogMessage ;
87
- }
88
- set
89
- {
90
- _lastLogMessage = value ;
91
- twitchCommandReplacements [ "%lastLog%" ] = value ;
92
- }
93
- }
94
106
private int lastLogBossId = 0 ;
95
107
private int _lastLogPullCounter = 0 ;
96
- private int LastLogPullCounter
97
- {
98
- get
99
- {
100
- return _lastLogPullCounter ;
101
- }
102
- set
103
- {
104
- _lastLogPullCounter = value ;
105
- twitchCommandReplacements [ "%pullCounter%" ] = value . ToString ( ) ;
106
- }
107
- }
108
108
private bool lastLogBossCM = false ;
109
109
private bool _updateFound = false ;
110
110
private GitHubReleaseLatest latestRelease = null ;
0 commit comments