From a44d3c2ebd20e05c7c574cd3a13888fc471067b9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sun, 20 Jul 2008 05:57:23 +0000 Subject: [ADD] Added pokescripting to the spec file [FIX] Added status tips and whats this tags to widgets in pokemodr [FIX] Removed the list sprite for the species [FIX] No more nidoran group needed (scripts should take care of it) [FIX] Height no longer broken between feet and inches [FIX] Fixed a bug in the TeamMember stat generation [FIX] No more global skins; should be scripted [FIX] Missed somt COPY() macros git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@227 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemod/Tile.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'pokemod/Tile.cpp') diff --git a/pokemod/Tile.cpp b/pokemod/Tile.cpp index 685bf57f..d5864058 100644 --- a/pokemod/Tile.cpp +++ b/pokemod/Tile.cpp @@ -140,6 +140,7 @@ Pokemod::Tile& Pokemod::Tile::operator=(const Tile& rhs) if (this == &rhs) return *this; COPY(name); + COPY(sprite); COPY_ARRAY(from, D_End); COPY(script); return *this; -- cgit