1
0
mirror of https://github.com/deavminet/dnetd synced 2024-09-21 17:53:39 +02:00

Fixed compilation issues

This commit is contained in:
Tristan B. Kildaire 2020-10-29 11:26:52 +02:00
parent 1466820ee1
commit 61faff4d1d

View File

@ -180,7 +180,7 @@ public class DConnection : Thread
private void cleanUp() private void cleanUp()
{ {
grpintln(to!(string)(this)~" Cleaning up connection..."); gprintln(to!(string)(this)~" Cleaning up connection...");
/* Remove this user from all channels he is in */ /* Remove this user from all channels he is in */
DChannel[] channels = server.getChannels(); DChannel[] channels = server.getChannels();
@ -895,7 +895,7 @@ public class DConnection : Thread
/* Find the user to send to */ /* Find the user to send to */
DConnection user = server.findUser(username); /*TODO: Ins erver not just use it directly */ DConnection user = server.findUser(username); /*TODO: Ins erver not just use it directly */
gprintln("sendUserMessage(): ", user); gprintln("sendUserMessage(): "~to!(string)(user));
/* If the user was found */ /* If the user was found */
if(user) if(user)