mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
no message
This commit is contained in:
parent
2bb4d02afd
commit
f6b9037469
2 changed files with 6 additions and 1 deletions
|
@ -20,6 +20,7 @@ namespace Horse_Isle_Server
|
||||||
public static string MapFile;
|
public static string MapFile;
|
||||||
public static string GameDataFile;
|
public static string GameDataFile;
|
||||||
public static string NpcDataFile;
|
public static string NpcDataFile;
|
||||||
|
public static string QuestDataFile;
|
||||||
public static string CrossDomainPolicyFile;
|
public static string CrossDomainPolicyFile;
|
||||||
public static bool Debug;
|
public static bool Debug;
|
||||||
|
|
||||||
|
@ -91,6 +92,9 @@ namespace Horse_Isle_Server
|
||||||
case "npc":
|
case "npc":
|
||||||
NpcDataFile = data;
|
NpcDataFile = data;
|
||||||
break;
|
break;
|
||||||
|
case "quest":
|
||||||
|
QuestDataFile = data;
|
||||||
|
break;
|
||||||
case "crossdomain":
|
case "crossdomain":
|
||||||
CrossDomainPolicyFile = data;
|
CrossDomainPolicyFile = data;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -18,7 +18,8 @@ map=MapDataCombined.bmp
|
||||||
# JSON Format Data
|
# JSON Format Data
|
||||||
|
|
||||||
gamedata=gamedata.json
|
gamedata=gamedata.json
|
||||||
npc=npcs.json
|
npc=npc.json
|
||||||
|
quest=action.json
|
||||||
|
|
||||||
# Cross-Domain Policy File
|
# Cross-Domain Policy File
|
||||||
crossdomain=CrossDomainPolicy.xml
|
crossdomain=CrossDomainPolicy.xml
|
||||||
|
|
Loading…
Add table
Reference in a new issue