mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2025-12-11 09:00:26 -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 {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
AUTHOR='Ceikry'
|
||||
DESCRIPTION='Displays some pretty awesome XP drops :)'
|
||||
VERSION=-1.1
|
||||
VERSION=1.1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue