Ignore:
Timestamp:
Sep 4, 2018, 1:00:48 PM (6 years ago)
Author:
alloc
Message:

Code style cleanup (mostly whitespace changes, enforcing braces, using cleanup)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/ChatHookExample.cs

    r324 r325  
    1 using System;
    2 
    3 namespace AllocsFixes
    4 {
     1namespace AllocsFixes {
    52        public class ChatHookExample {
    6                 private const string ANSWER = "     [ff0000]I[-] [ff7f00]W[-][ffff00]A[-][80ff00]S[-] [00ffff]H[-][0080ff]E[-][0000ff]R[-][8b00ff]E[-]";
     3                private const string ANSWER =
     4                        "     [ff0000]I[-] [ff7f00]W[-][ffff00]A[-][80ff00]S[-] [00ffff]H[-][0080ff]E[-][0000ff]R[-][8b00ff]E[-]";
    75
    86                public static bool Hook (ClientInfo _cInfo, EChatType _type, string _message, string _playerName) {
     
    119                                        if (_cInfo != null) {
    1210                                                Log.Out ("Sent chat hook reply to {0}", _cInfo.playerId);
    13                                                 _cInfo.SendPackage (new NetPackageChat(EChatType.Whisper, -1, ANSWER, "", false, null));
     11                                                _cInfo.SendPackage (new NetPackageChat (EChatType.Whisper, -1, ANSWER, "", false, null));
    1412                                        } else {
    1513                                                Log.Error ("ChatHookExample: Argument _cInfo null on message: {0}", _message);
    1614                                        }
     15
    1716                                        return false;
    1817                                }
     
    2120                        return true;
    2221                }
    23 
    2422        }
    2523}
Note: See TracChangeset for help on using the changeset viewer.