Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit d3dff04

Browse files
committed
remove LimpetCount > 0 check in limpet button KeyPressed function
1 parent d156d58 commit d3dff04

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Elite/Buttons/Limpet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ public override void KeyPressed(KeyPayload payload)
228228

229229

230230

231-
if (!isDisabled && EliteData.LimpetCount > 0 && !string.IsNullOrEmpty(settings.Firegroup) && !string.IsNullOrEmpty(settings.Fire))
231+
if (!isDisabled && !string.IsNullOrEmpty(settings.Firegroup) && !string.IsNullOrEmpty(settings.Fire))
232232
{
233233
var cycle = Convert.ToInt32(settings.Firegroup) - EliteData.StatusData.Firegroup;
234234

Elite/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[assembly: AssemblyConfiguration("")]
1010
[assembly: AssemblyCompany("")]
1111
[assembly: AssemblyProduct("Elite Dangerous Buttons")]
12-
[assembly: AssemblyCopyright("Copyright © 2022")]
12+
[assembly: AssemblyCopyright("Copyright © 2023")]
1313
[assembly: AssemblyTrademark("")]
1414
[assembly: AssemblyCulture("")]
1515

@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("2.5.4.0")]
35-
[assembly: AssemblyFileVersion("2.5.4.0")]
34+
[assembly: AssemblyVersion("2.5.5.0")]
35+
[assembly: AssemblyFileVersion("2.5.5.0")]

Elite/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
"Name": "Elite Dangerous",
178178
"Icon": "Images/pluginIcon",
179179
"URL": "https://github.com/mhwlng/streamdeck-elite",
180-
"Version": "2.5.4",
180+
"Version": "2.5.5",
181181
"CodePath": "com.mhwlng.elite",
182182
"Category": "Elite Dangerous",
183183
"CategoryIcon": "Images/categoryIcon",

0 commit comments

Comments
 (0)