summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-18 15:50:06 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-18 15:50:06 +0000
commit0e29649531977f356c8d87477e8c2c8cfe070481 (patch)
tree7c5520bfc70ed2772f3efa420f1613bfe0044986
parentdf3c056469d5c42ded803ef9a75b7d4e1daaac23 (diff)
Fixes to ircd_connector::SetServerDesc() (was setting the server name!)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@646 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/InspIRCd.layout20
-rw-r--r--src/connection.cpp2
2 files changed, 11 insertions, 11 deletions
diff --git a/src/InspIRCd.layout b/src/InspIRCd.layout
index c96e10fa8..129bb7e4c 100644
--- a/src/InspIRCd.layout
+++ b/src/InspIRCd.layout
@@ -1,5 +1,5 @@
[Editors]
-Focused=1
+Focused=24
Order=1,2,4,6,3,7,25,5,24,-1
[Editor_0]
@@ -12,10 +12,10 @@ LeftChar=1
[Editor_1]
Open=1
-Top=1
-CursorCol=9
-CursorRow=7052
-TopLine=7007
+Top=0
+CursorCol=3
+CursorRow=729
+TopLine=692
LeftChar=1
[Editor_2]
@@ -111,7 +111,7 @@ Open=1
Top=0
CursorCol=51
CursorRow=125
-TopLine=73
+TopLine=40
LeftChar=1
[Editor_14]
@@ -196,10 +196,10 @@ LeftChar=1
[Editor_24]
Open=1
-Top=0
-CursorCol=27
-CursorRow=134
-TopLine=315
+Top=1
+CursorCol=8
+CursorRow=283
+TopLine=245
LeftChar=1
[Editor_25]
Open=1
diff --git a/src/connection.cpp b/src/connection.cpp
index dc654e655..145301229 100644
--- a/src/connection.cpp
+++ b/src/connection.cpp
@@ -280,7 +280,7 @@ void ircd_connector::SetServerName(std::string serv)
void ircd_connector::SetDescription(std::string desc)
{
- this->servername = desc;
+ this->description = desc;
}