Skip to content

Commit 3bec461

Browse files
committed
up
1 parent 2b890f1 commit 3bec461

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Entity.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public void baseCall(string methodname, params object[] arguments)
175175
ScriptModule module = null;
176176
if(!EntityDef.moduledefs.TryGetValue(className, out module))
177177
{
178-
Dbg.ERROR_MSG("entity::baseCall: entity-module(" + className + ") error!");
178+
Dbg.ERROR_MSG("entity::baseCall: entity-module(" + className + ") error, can not find from EntityDef.moduledefs");
179179
return;
180180
}
181181

@@ -232,7 +232,7 @@ public void cellCall(string methodname, params object[] arguments)
232232
ScriptModule module = null;
233233
if(!EntityDef.moduledefs.TryGetValue(className, out module))
234234
{
235-
Dbg.ERROR_MSG("entity::cellCall: entity-module(" + className + ") error!");
235+
Dbg.ERROR_MSG("entity::cellCall: entity-module(" + className + ") error, can not find from EntityDef.moduledefs!");
236236
return;
237237
}
238238

0 commit comments

Comments
 (0)