We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c48892 + 2949bcb commit 0a72572Copy full SHA for 0a72572
src/engine/world/actor/player/player.ts
@@ -176,7 +176,7 @@ export class Player extends Actor {
176
this.outgoingPackets.chatboxMessage('Welcome to RuneJS.');
177
178
this.skills.values.forEach((skill, index) =>
179
- this.outgoingPackets.updateSkill(index, skill.level, skill.exp));
+ this.outgoingPackets.updateSkill(index, this.skills.getLevel(index), skill.exp));
180
181
this.outgoingPackets.sendUpdateAllWidgetItems(widgets.inventory, this.inventory);
182
this.outgoingPackets.sendUpdateAllWidgetItems(widgets.equipment, this.equipment);
0 commit comments