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
4 changes: 4 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4062,3 +4062,7 @@ When setting a property like MORE to the a spell or skill defname, trying to rea

30-09-2025, Mulambo
- Changed: Login rejection (packet `0x82`) is now sent to all clients trying to log in (used to be only to clients, that Sphere could identify).

22-10-2025, Jhobean
- Fixed: Full Tooltip now update each time you move an item manually (Issue #1500)
- Fixed: On some situation when item was move or add on ground by script, decay flag and timer was not set. (Issue #1498)
6 changes: 5 additions & 1 deletion src/game/CObjBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2464,7 +2464,11 @@ bool CObjBase::r_Verb( CScript & s, CTextConsole * pSrc ) // Execute command fro
if (pt.IsValidPoint())
{
RemoveFromView();
MoveTo(pt);
CItem* pItem = dynamic_cast<CItem*>(this);
if (pItem)
pItem->MoveToDecay(pt, pItem->GetDecayTime());
else
MoveTo(pt);
Update();
}
else
Expand Down
1 change: 1 addition & 0 deletions src/game/clients/CClientEvent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,7 @@ void CClient::Event_Item_Drop( CUID uidItem, CPointMap pt, CUID uidOn, uchar gri
m_pChar->UpdateDrag( pItem, nullptr, &pt );
m_pChar->ItemDrop( pItem, pt );
}
pItem->ResendTooltip(true);
}


Expand Down