diff options
author | Mathias <mathias-github@users.noreply.github.com> | 2016-01-31 01:25:03 +0100 |
---|---|---|
committer | Mathias <mathias-github@users.noreply.github.com> | 2016-01-31 01:25:03 +0100 |
commit | 89f3dec7ac67e4fbcbc300824a86aea66f487b30 (patch) | |
tree | 9fcdeb086ab771b7cc2280f37dab99ac4914a3ee /src/UI | |
parent | Merge pull request #2913 from mathias-github/master (diff) | |
download | cuberite-89f3dec7ac67e4fbcbc300824a86aea66f487b30.tar cuberite-89f3dec7ac67e4fbcbc300824a86aea66f487b30.tar.gz cuberite-89f3dec7ac67e4fbcbc300824a86aea66f487b30.tar.bz2 cuberite-89f3dec7ac67e4fbcbc300824a86aea66f487b30.tar.lz cuberite-89f3dec7ac67e4fbcbc300824a86aea66f487b30.tar.xz cuberite-89f3dec7ac67e4fbcbc300824a86aea66f487b30.tar.zst cuberite-89f3dec7ac67e4fbcbc300824a86aea66f487b30.zip |
Diffstat (limited to 'src/UI')
-rw-r--r-- | src/UI/Window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/UI/Window.cpp b/src/UI/Window.cpp index d0b963e13..e23c3c698 100644 --- a/src/UI/Window.cpp +++ b/src/UI/Window.cpp @@ -35,7 +35,7 @@ cWindow::cWindow(WindowType a_WindowType, const AString & a_WindowTitle) : m_Owner(nullptr) { // The window ID is signed in protocol 1.7, unsigned in protocol 1.8. Keep out of trouble by using only 7 bits: - // Ref.: http://forum.mc-server.org/showthread.php?tid=1876 + // Ref.: https://forum.cuberite.org/thread-1876.html ASSERT((m_WindowID >= 0) && (m_WindowID < 127)); if (a_WindowType == wtInventory) |