forked from 2009Scape/Server
Replaced "Make 10" with "Make 30" for crafting interfaces that use the chat dialogue
The client will still display 10, but the action will repeat 30 times.
This commit is contained in:
parent
5319cabdae
commit
a86b734e0d
1 changed files with 6 additions and 6 deletions
|
|
@ -154,8 +154,8 @@ open class SkillDialogueHandler(
|
|||
// "Make 5 sets" Option
|
||||
3 -> 5
|
||||
// "Make 10 sets" Option
|
||||
2 -> 10
|
||||
else -> 10
|
||||
2 -> 30
|
||||
else -> 30
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -182,7 +182,7 @@ open class SkillDialogueHandler(
|
|||
when (buttonId) {
|
||||
6, 10 -> return 1
|
||||
5, 9 -> return 5
|
||||
4, 8 -> return 10
|
||||
4, 8 -> return 30
|
||||
3, 7 -> return -1
|
||||
}
|
||||
return 1
|
||||
|
|
@ -211,7 +211,7 @@ open class SkillDialogueHandler(
|
|||
when (buttonId) {
|
||||
7, 11, 15 -> return 1
|
||||
6, 10, 14 -> return 5
|
||||
5, 9, 13 -> return 10
|
||||
5, 9, 13 -> return 30
|
||||
4, 8, 12 -> return -1
|
||||
}
|
||||
return 1
|
||||
|
|
@ -241,7 +241,7 @@ open class SkillDialogueHandler(
|
|||
when (buttonId) {
|
||||
8, 12, 16, 20 -> return 1
|
||||
7, 11, 15, 19 -> return 5
|
||||
6, 10, 14, 18 -> return 10
|
||||
6, 10, 14, 18 -> return 30
|
||||
5, 9, 13, 17 -> return -1
|
||||
}
|
||||
return 1
|
||||
|
|
@ -278,7 +278,7 @@ open class SkillDialogueHandler(
|
|||
when (buttonId) {
|
||||
9, 13, 17, 21, 25 -> return 1
|
||||
8, 12, 16, 20, 24 -> return 5
|
||||
7, 11, 15, 19, 23 -> return 10
|
||||
7, 11, 15, 19, 23 -> return 30
|
||||
6, 10, 14, 18, 22 -> return -1
|
||||
}
|
||||
return 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue