summaryrefslogtreecommitdiffstats
path: root/src/UI/Window.cpp
diff options
context:
space:
mode:
authorJulian Laubstein <julianlaubstein@yahoo.de>2016-01-31 01:54:23 +0100
committerJulian Laubstein <julianlaubstein@yahoo.de>2016-01-31 01:54:23 +0100
commit57e6fd654b919fbd3813158e5a76de4b1933ebfa (patch)
tree9fcdeb086ab771b7cc2280f37dab99ac4914a3ee /src/UI/Window.cpp
parentMerge pull request #2913 from mathias-github/master (diff)
parentUpdated old forum links (diff)
downloadcuberite-57e6fd654b919fbd3813158e5a76de4b1933ebfa.tar
cuberite-57e6fd654b919fbd3813158e5a76de4b1933ebfa.tar.gz
cuberite-57e6fd654b919fbd3813158e5a76de4b1933ebfa.tar.bz2
cuberite-57e6fd654b919fbd3813158e5a76de4b1933ebfa.tar.lz
cuberite-57e6fd654b919fbd3813158e5a76de4b1933ebfa.tar.xz
cuberite-57e6fd654b919fbd3813158e5a76de4b1933ebfa.tar.zst
cuberite-57e6fd654b919fbd3813158e5a76de4b1933ebfa.zip
Diffstat (limited to 'src/UI/Window.cpp')
-rw-r--r--src/UI/Window.cpp2
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)