mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2025-12-09 16:45:46 -07:00
Update plugin descriptions and minor xp drop bugfix
This commit is contained in:
parent
54b426f72d
commit
1890fe8087
6 changed files with 15 additions and 9 deletions
|
|
@ -59,6 +59,11 @@ class plugin : Plugin() {
|
|||
val gain = xp - lastXp[skill]
|
||||
if (gain <= 0) return
|
||||
|
||||
if (lastXp[skill] == 0) {
|
||||
lastXp[skill] = xp
|
||||
totalXp += xp
|
||||
return
|
||||
}
|
||||
lastXp[skill] = xp
|
||||
|
||||
val currentTail = try {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue