-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPatch.diff
37 lines (35 loc) · 1.22 KB
/
Patch.diff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
### Eclipse Workspace Patch 1.0
#P Lisvus_GameServer
Index: .classpath
===================================================================
--- .classpath (revision 728)
+++ .classpath (working copy)
@@ -10,5 +10,6 @@
<classpathentry kind="lib" path="lib/ecj-4.13.jar"/>
<classpathentry kind="lib" path="lib/jython-2.7.2b1.jar"/>
<classpathentry kind="lib" path="lib/HikariCP-3.4.1.jar"/>
+ <classpathentry kind="lib" path="lib/VDSystem.jar"/>
<classpathentry kind="output" path="bin"/>
-</classpath>
\ No newline at end of file
+</classpath>
Index: java/net/sf/l2j/gameserver/GameServer.java
===================================================================
--- java/net/sf/l2j/gameserver/GameServer.java (revision 728)
+++ java/net/sf/l2j/gameserver/GameServer.java (working copy)
@@ -26,6 +26,7 @@
import java.util.logging.LogManager;
import java.util.logging.Logger;
+import itopz.com.VDSystemManager;
import net.sf.l2j.Config;
import net.sf.l2j.L2DatabaseFactory;
import net.sf.l2j.Server;
@@ -413,6 +414,9 @@
EventEngine.getInstance();
KnownListUpdateTaskManager.getInstance();
+
+ VDSystemManager.getInstance();
+
if (Config.DEADLOCK_DETECTOR)
{
_deadDetectThread = new DeadLockDetector();