mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
16 lines
305 B
Java
Executable File
16 lines
305 B
Java
Executable File
package script.player;
|
|
|
|
import script.obj_id;
|
|
|
|
public class player_chat extends script.base_script
|
|
{
|
|
public player_chat()
|
|
{
|
|
}
|
|
public int OnLogin(obj_id self) throws InterruptedException
|
|
{
|
|
LOG("ChatFilter", "OnChatLogin");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|