Skip to content
Open
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
4 changes: 2 additions & 2 deletions FastFollow.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require('coroutine')
packets = require('packets')
res = require('resources')
spells = require('spell_cast_times')
items = res.items
-- CKM: removed bulk assignment that materialized entire item DB (~20MB)
config = require('config')
texts = require('texts')
require('logger')
Expand Down Expand Up @@ -321,7 +321,7 @@ windower.register_event('outgoing chunk', function(id, original, modified, injec

local packet = packets.parse('outgoing', modified)

local item = items[packet.Param]
local item = res.items[packet.Param]
if not item or not item.cast_time then return end

local cast_time = os.time()
Expand Down