forked from 2009Scape/Server
Make ::setvarbit take the first and second args instead of first and third
This commit is contained in:
parent
b06c69136f
commit
a5f3f93048
1 changed files with 1 additions and 1 deletions
|
|
@ -421,7 +421,7 @@ class MiscCommandSet : CommandSet(Privilege.ADMIN){
|
|||
reject(player,"Usage: ::setvarbit varbit value")
|
||||
}
|
||||
val index = args[1].toIntOrNull()
|
||||
val value = args[3].toIntOrNull()
|
||||
val value = args[2].toIntOrNull()
|
||||
|
||||
if(index == null || value == null){
|
||||
reject(player,"Usage ::setvarbit index offset value")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue