Skip to content

Commit 7b367ea

Browse files
committed
chore: Simplify VibeOrder initializers for Kiiroo2.1
Nothing actually has multiple controlled vibes (that we know of yet), so just make all of these 1/0. Could probably just remove it completely.
1 parent 69a20e2 commit 7b367ea

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Buttplug/Devices/Protocols/KiirooGen21Protocol.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ internal struct KiirooGen21Type
4040
Name="Cliona",
4141
HasLinear=false,
4242
VibeCount=1,
43-
VibeOrder=new[]{0u,1u,2u},
43+
VibeOrder=new[]{0u},
4444
}
4545
},
4646
{
@@ -51,7 +51,7 @@ internal struct KiirooGen21Type
5151
Name="Pearl 2.1",
5252
HasLinear=false,
5353
VibeCount=1,
54-
VibeOrder=new[]{0u,1u,2u},
54+
VibeOrder=new[]{0u},
5555
}
5656
},
5757
{
@@ -62,7 +62,7 @@ internal struct KiirooGen21Type
6262
Name="Esca 2",
6363
HasLinear=false,
6464
VibeCount=1,
65-
VibeOrder=new[]{0u,1u,2u},
65+
VibeOrder=new[]{0u},
6666
}
6767
},
6868
{
@@ -73,7 +73,7 @@ internal struct KiirooGen21Type
7373
Name="Onyx 2.1",
7474
HasLinear=true,
7575
VibeCount=0,
76-
VibeOrder=new[]{0u,1u,2u},
76+
VibeOrder=newuint[0],
7777
}
7878
},
7979
{
@@ -84,7 +84,7 @@ internal struct KiirooGen21Type
8484
Name="Titan 1.1",
8585
HasLinear=true,
8686
VibeCount=1,// actually 3
87-
VibeOrder=new[]{0u,1u,2u},
87+
VibeOrder=new[]{0u},
8888
}
8989
},
9090
};

0 commit comments

Comments
 (0)
close