Skip to content
Open
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
1 change: 1 addition & 0 deletions mods/game_bot/executor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ function executeBot(config, storage, tabs, msgCallback, saveConfigCallback, relo
openUrl = g_platform.openUrl,
openDir = g_platform.openDir,
}
context.g_clock = g_clock

context.Item = Item
context.Creature = Creature
Expand Down
2 changes: 2 additions & 0 deletions src/client/attachedeffect.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ class AttachedEffect final : public LuaObject

uint16_t getId() { return m_id; }

uint16_t getThingId() { return m_thingId; }

AttachedEffectPtr clone();

float getSpeed() { return m_speed / 100.f; }
Expand Down
Loading