Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1:/tmp/cvs-serv28953
Modified Files:
items.cpp
Log Message:
Commented the Tooltip fix a bit
Index: items.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/items.cpp,v
retrieving revision 1.342
retrieving revision 1.343
diff -C2 -d -r1.342 -r1.343
*** items.cpp 29 Aug 2003 22:44:47 -0000 1.342
--- items.cpp 29 Aug 2003 22:46:30 -0000 1.343
***************
*** 2368,2376 ****
// Mostly Signs (not movable but still have tooltips shown)
! if( ( id >= 0xba3 && id <= 0xc0e ) ||
! ( id >= 0x1297 && id <= 0x129e ) ||
! ( id >= 0x3e4a && id <= 0x3e55 ) ||
! ( id >= 0xed4 && id <= 0xede ) ||
! ( id >= 0x1165 && id <= 0x1184 )
)
{
--- 2368,2377 ----
// Mostly Signs (not movable but still have tooltips shown)
! if( ( id >= 0xba3 && id <= 0xc0e ) || // House Signs
! ( id >= 0x1297 && id <= 0x129e ) || // Road Signs
! ( id >= 0x3e4a && id <= 0x3e55 ) || // Tillermen
! ( id >= 0xed4 && id <= 0xede ) || // Graves and Guildstones
! ( id >= 0x1165 && id <= 0x1184 ) || // More Gravestones
! !name_.isNull() // Non Default Name
)
{
|