diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-08-04 17:44:07 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-08-04 17:44:07 +0000 |
| commit | c014db49f5044f15e7ad0236437ac9ae4aa3b23f (patch) | |
| tree | ba9b1fe82b1a43155b99259d324ff444f1cdcf14 /pokescripting/MoveWrapper.h | |
| parent | 38b4604019a93ecd053939e8e722fd36b8d7236d (diff) | |
| download | sigen-c014db49f5044f15e7ad0236437ac9ae4aa3b23f.tar.gz sigen-c014db49f5044f15e7ad0236437ac9ae4aa3b23f.tar.xz sigen-c014db49f5044f15e7ad0236437ac9ae4aa3b23f.zip | |
[FIX] Move no longer uses the overworld flag (will just check to see if the worldScript is empty)
[FIX] TeamMember now inherits from Config
[FIX] Wrapper now inherit from Config
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@235 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokescripting/MoveWrapper.h')
| -rw-r--r-- | pokescripting/MoveWrapper.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/pokescripting/MoveWrapper.h b/pokescripting/MoveWrapper.h index eab6d53f..7dbb48cf 100644 --- a/pokescripting/MoveWrapper.h +++ b/pokescripting/MoveWrapper.h @@ -39,7 +39,6 @@ class POKESCRIPTING_EXPORT MoveWrapper : public ObjectWrapper int power() const; const TypeWrapper* type() const; bool special() const; - bool overworld() const; int powerPoints() const; int priority() const; QString description() const; @@ -80,11 +79,6 @@ inline bool MoveWrapper::special() const return m_move->special(); } -inline bool MoveWrapper::overworld() const -{ - return m_move->overworld(); -} - inline int MoveWrapper::powerPoints() const { return m_move->powerPoints(); |
