Skip to content

Commit 74b66f0

Browse files
committed
few correction on some descriptions
1 parent b229a93 commit 74b66f0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

‎Essentials/Commands/BlocksModule.cs‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public void OffType(string type)
7878
Context.Respond($"Disabled {count} blocks of type {type}.");
7979
}
8080

81-
[Command("remove subtype", "Turn off all blocks of the given subtype.")]
81+
[Command("remove subtype", "remove all blocks of the given subtype.")]
8282
public void RemoveSubtype(string subtype)
8383
{
8484
var toRemove = new List<MySlimBlock>();
@@ -97,7 +97,7 @@ public void RemoveSubtype(string subtype)
9797
Context.Respond($"Removed {toRemove.Count} blocks of subtype {subtype}.");
9898
}
9999

100-
[Command("remove type", "Turn off all blocks of the given type.")]
100+
[Command("remove type", "remove all blocks of the given type.")]
101101
public void RemoveType(string type)
102102
{
103103
var toRemove = new List<MySlimBlock>();
@@ -138,7 +138,7 @@ public void OffSubtype(string subtype)
138138
Context.Respond($"Disabled {count} blocks of subtype {subtype}.");
139139
}
140140

141-
[Command("on general", "Turn on all blocks of the specified general")]
141+
[Command("on general", "Turn on all blocks of the specified category")]
142142
public void OnGeneral(string category)
143143
{
144144
var count = 0;
@@ -171,7 +171,7 @@ public void OnGeneral(string category)
171171
}
172172

173173

174-
[Command("off general", "Turn off all blocks of the specified general")]
174+
[Command("off general", "Turn off all blocks of the specified category")]
175175
public void OffGeneral(string category)
176176
{
177177
var count = 0;

0 commit comments

Comments
 (0)