Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runelite-plugin.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
displayName=AttackTimer
author=ngraves95,Lexer747
build=standard
version=1.2.2
version=1.2.3
description=A plugin to countdown until your next attack
tags=pvm,timer,attack,combat,weapon
plugins=com.attacktimer.AttackTimerMetronomePlugin
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ public void onRender()

public void checkForLateWeaponSwaps()
{
final boolean weaponMisMatch = Utils.getWeaponId(client) != lastUsedWeaponId;
final boolean weaponMisMatch = getWeaponId() != lastUsedWeaponId;

// This windowing safe guards of from late swaps inside a tick, if we have already rendered the tick
// then we shouldn't perform another attack.
Expand Down
Loading