Browse Source

Remove accidental commandparser change

git-svn-id: http://svn.dmdirc.com/trunk@1681 00569f92-eb28-0410-84fd-f71c24880f
tags/0.5
Chris Smith 17 years ago
parent
commit
9d830ea313
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/commandparser/CommandParser.java

+ 1
- 1
src/com/dmdirc/commandparser/CommandParser.java View File

@@ -94,7 +94,7 @@ public abstract class CommandParser implements Serializable {
94 94
             int offset = 1;
95 95
             boolean silent = false;
96 96
             
97
-            if (line.charAt(offset) == Config.getOption("general", "silencechar", "/").charAt(0)) {
97
+            if (line.charAt(offset) == Config.getOption("general", "silencechar").charAt(0)) {
98 98
                 silent = true;
99 99
                 offset++;
100 100
             }

Loading…
Cancel
Save