diff options
author | Adam Frisby | 2008-05-01 16:23:53 +0000 |
---|---|---|
committer | Adam Frisby | 2008-05-01 16:23:53 +0000 |
commit | 01f31fd933bbaec246d2fef5756b7d83be7980e0 (patch) | |
tree | 45ce7727e83238bf492924bea3ff5f0b6c82acbc /OpenSim/Grid/ScriptServer | |
parent | * In ur code. Making it static. (diff) | |
download | opensim-SC_OLD-01f31fd933bbaec246d2fef5756b7d83be7980e0.zip opensim-SC_OLD-01f31fd933bbaec246d2fef5756b7d83be7980e0.tar.gz opensim-SC_OLD-01f31fd933bbaec246d2fef5756b7d83be7980e0.tar.bz2 opensim-SC_OLD-01f31fd933bbaec246d2fef5756b7d83be7980e0.tar.xz |
* Breaking all the code, breaking all the code..!
* Made a bunch more members static, removed some dead code, general cleaning.
Diffstat (limited to 'OpenSim/Grid/ScriptServer')
-rw-r--r-- | OpenSim/Grid/ScriptServer/ScriptServerMain.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/ScriptServer/ScriptServerMain.cs b/OpenSim/Grid/ScriptServer/ScriptServerMain.cs index 729d262..528b51c 100644 --- a/OpenSim/Grid/ScriptServer/ScriptServerMain.cs +++ b/OpenSim/Grid/ScriptServer/ScriptServerMain.cs | |||
@@ -80,14 +80,14 @@ namespace OpenSim.Grid.ScriptServer | |||
80 | Console.ReadLine(); | 80 | Console.ReadLine(); |
81 | } | 81 | } |
82 | 82 | ||
83 | private void RPC_ReceiveCommand(int ID, string Command, object[] p) | 83 | private static void RPC_ReceiveCommand(int ID, string Command, object[] p) |
84 | { | 84 | { |
85 | m_log.Info("[SERVER]: Received command: '" + Command + "'"); | 85 | m_log.Info("[SERVER]: Received command: '" + Command + "'"); |
86 | if (p != null) | 86 | if (p != null) |
87 | { | 87 | { |
88 | for (int i = 0; i < p.Length; i++) | 88 | for (int i = 0; i < p.Length; i++) |
89 | { | 89 | { |
90 | m_log.Info("[SERVER]: Param " + i + ": " + p[i].ToString()); | 90 | m_log.Info("[SERVER]: Param " + i + ": " + p[i]); |
91 | } | 91 | } |
92 | } | 92 | } |
93 | 93 | ||