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
8 changes: 8 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4077,3 +4077,11 @@ When setting a property like MORE to the a spell or skill defname, trying to rea
- Changed: Object timers are now saved in worldsave files as TIMERMS, to avoid ambiguity and reliance on git build number to determine if TIMER expressed a number in seconds or milliseconds.
- Changed: Added 5 seconds timeout to DNS hostname resolution at startup (avoid getting stuck when connectivity is enabled but not working).
- Changed: CANMASK formatted in worldsave files as hexadecimal number, instead of decimal.

23-11-2025, canerksk
- Changed: Duplicate message deleted. (Issue #1519).


25-11-2025, canerksk
- Added: console clear/lists clear added to context menu (Issue #1516)

1 change: 0 additions & 1 deletion src/game/clients/CClientUse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ bool CClient::Cmd_Use_Item( CItem *pItem, bool fTestTouch, bool fScript )
SysMessageDefault(DEFMSG_ITEMUSE_LOCKED);
if (!m_pChar->GetPackSafe()->ContentFindKeyFor(pItem)) // I don't have the container key
{
SysMessageDefault(DEFMSG_ITEMUSE_LOCKED);
SysMessageDefault(DEFMSG_LOCK_CONT_NO_KEY);
if (!IsPriv(PRIV_GM))
return false;
Expand Down
2 changes: 2 additions & 0 deletions src/resources/SphereSvr.rc
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ BEGIN
MENUITEM SEPARATOR
MENUITEM "Restore", IDM_RESTORE
MENUITEM "Minimize", IDM_MINIMIZE
MENUITEM "Console Clear", IDM_CLEAR_CONSOLE
MENUITEM SEPARATOR
MENUITEM "Status...", IDM_STATUS
MENUITEM "About...", IDR_ABOUT_BOX
Expand All @@ -167,6 +168,7 @@ BEGIN
MENUITEM "Copy", IDM_EDIT_COPY
MENUITEM SEPARATOR
MENUITEM "Resync Pause", IDM_RESYNC_PAUSE
MENUITEM "Console Clear", IDM_CLEAR_CONSOLE
MENUITEM SEPARATOR
MENUITEM "Status...", IDM_STATUS
MENUITEM "About...", IDR_ABOUT_BOX
Expand Down
1 change: 1 addition & 0 deletions src/resources/win_resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#define IDC_SETUP_LOG 4023
#define IDC_SETUP_NAME 4024
#define IDM_RESYNC_PAUSE 32784
#define IDM_CLEAR_CONSOLE 32785

// Next default values for new objects
//
Expand Down
3 changes: 3 additions & 0 deletions src/sphere/ntwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,9 @@ bool CNTWindow::OnCommand( WORD wNotifyCode, INT_PTR wID, HWND hwndCtl )
// SC_MINIMIZE
ShowWindow(SW_HIDE);
break;
case IDM_CLEAR_CONSOLE:
List_Clear();
break;
case IDM_RESTORE:
// SC_RESTORE
ShowWindow(SW_NORMAL);
Expand Down