瀏覽代碼

Removed two unused constants for alchemists

* Job_Alchem(Job_Alchemist would be correct)
* Job_Baby_Alchem(Job_Baby_Alchemist would be correct)

Both are currently unused in our delivered npc and item scripts.
Please consider using their correct constants instead.
Lemongrass3110 9 年之前
父節點
當前提交
5ea3f30d32
共有 1 個文件被更改,包括 0 次插入4 次删除
  1. 0 4
      src/map/script_constants.h

+ 0 - 4
src/map/script_constants.h

@@ -42,8 +42,6 @@
 	export_constant(JOB_SAGE);
 	export_constant(JOB_ROGUE);
 	export_constant(JOB_ALCHEMIST);
-	// For backwards compatability
-	script_set_constant("Job_Alchem",JOB_ALCHEMIST,false); // TODO: Check if this is used anywhere and remove if possible
 	export_constant(JOB_BARD);
 	export_constant(JOB_DANCER);
 	export_constant(JOB_CRUSADER2);
@@ -100,8 +98,6 @@
 	export_constant(JOB_BABY_SAGE);
 	export_constant(JOB_BABY_ROGUE);
 	export_constant(JOB_BABY_ALCHEMIST);
-	// For backwards compatability
-	script_set_constant("Job_Baby_Alchem",JOB_BABY_ALCHEMIST,false); // TODO: Check if this is used anywhere and remove if possible
 	export_constant(JOB_BABY_BARD);
 	export_constant(JOB_BABY_DANCER);
 	export_constant(JOB_BABY_CRUSADER2);