mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
Fix plugin issues created by breaking changes in previous commit.
This commit is contained in:
@@ -11,7 +11,7 @@ class Rune
|
||||
|
||||
def initialize(id, level, experience, multiplier)
|
||||
@id = id
|
||||
@name = ItemDefinition.lookup(id).name.downcase
|
||||
@name = ItemDefinition.lookup(id).name.to_s.downcase
|
||||
@level = level
|
||||
@experience = experience
|
||||
@multiplier = multiplier
|
||||
|
||||
@@ -18,7 +18,7 @@ class Tiara
|
||||
|
||||
def initialize(tiara_id, altar, talisman, bitshift, experience)
|
||||
@tiara_id = tiara_id
|
||||
@name = ItemDefinition.lookup(tiara_id).name.downcase
|
||||
@name = ItemDefinition.lookup(tiara_id).name.to_s.downcase
|
||||
@altar = altar
|
||||
@talisman = talisman
|
||||
@bitshift = bitshift
|
||||
|
||||
Reference in New Issue
Block a user