Fix NPC 9000011 (#388)

This commit is contained in:
MedicOP
2019-02-03 16:30:15 +01:00
committed by Ronan Lana
parent 6b40f32d30
commit fdcc03c5f7
2 changed files with 5 additions and 1 deletions

View File

@@ -1089,4 +1089,8 @@ public class AbstractPlayerInteraction {
public void npcTalk(int npcid, String message) {
c.announce(MaplePacketCreator.getNPCTalk(npcid, (byte) 0, message, "00 00", (byte) 0));
}
public long getCurrentTime() {
return System.currentTimeMillis();
}
}