diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2009-02-09 05:59:44 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2009-02-09 05:59:44 -0500 |
| commit | 004347a4ee3141a9cc554abb713b8a4a006e72d1 (patch) | |
| tree | 161a3ebb71e03d723c97fa0c50305567adeaf23a | |
| parent | d79b2cb17d990fc87b0f99287f9940209375ce94 (diff) | |
Use the raw value rather than the method value
| -rw-r--r-- | sigencore/Arena.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sigencore/Arena.cpp b/sigencore/Arena.cpp index f7bf1eae..1b81917a 100644 --- a/sigencore/Arena.cpp +++ b/sigencore/Arena.cpp @@ -217,7 +217,7 @@ void Sigencore::Arena::handleAction(TeamMember* teamMember, TeamMember::Action a } case TeamMember::Item: { - Sigscript::ItemWrapper* item = sigmod()->item(data.first.toInt()); + Sigscript::ItemWrapper* item = m_sigmod->item(data.first.toInt()); if (item) { const Sigcore::Script script = item->script(); |
