Skip to content

Commit 53c7253

Browse files
Jhobeancbnolok
authored andcommitted
Fix ERROR:Undefined symbol '' ['c_ghost_man'] when death (#52)
1 parent 7bd6b38 commit 53c7253

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

_syntax highlighting/editplus/sphere.stx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1565,7 +1565,7 @@ c_ettin
15651565
c_ettin_w_axe
15661566
c_gargoyle
15671567
c_gazer
1568-
c_ghost_male
1568+
c_ghost_man
15691569
c_ghost_female
15701570
c_goat
15711571
c_gorilla

core/defs_height.scp

+2-2
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ height_013f 8 //DEFNAME=c_mound_maggots
321321

322322
height_0190 16 //DEFNAME=c_man
323323
height_0191 16 //DEFNAME=c_woman
324-
height_0192 16 //DEFNAME=c_ghost_male
324+
height_0192 16 //DEFNAME=c_ghost_man
325325
height_0193 16 //DEFNAME=c_ghost_female
326326

327327
height_01a4 8 //DEFNAME=c_child_mb
@@ -334,7 +334,7 @@ height_023e 16 //DEFNAME=c_blade_spirit
334334

335335
height_025d 16 //DEFNAME=c_elf_male
336336
height_025e 16 //DEFNAME=c_elf_female
337-
height_025f 16 //DEFNAME=c_elf_ghost_male
337+
height_025f 16 //DEFNAME=c_elf_ghost_man
338338

339339
height_0260 16 //DEFNAME=c_elf_ghost_female
340340

functions/f_is.scp

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
VERSION=X1
66

77
[FUNCTION f_isHuman]
8-
IF (<BODY>==c_man) || (<BODY>==c_woman) || (<BODY>==c_ghost_male) || (<BODY>==c_ghost_female)
8+
IF (<BODY>==c_man) || (<BODY>==c_woman) || (<BODY>==c_ghost_man) || (<BODY>==c_ghost_female)
99
RETURN 1
1010
ENDIF
1111
RETURN 0
1212

1313
[FUNCTION f_isElf]
14-
IF (<BODY>==c_elf_male) || (<BODY>==c_elf_female) || (<BODY>==c_elf_ghost_male) || (<BODY>==c_elf_ghost_female)
14+
IF (<BODY>==c_elf_male) || (<BODY>==c_elf_female) || (<BODY>==c_elf_ghost_man) || (<BODY>==c_elf_ghost_female)
1515
RETURN 1
1616
ENDIF
1717
RETURN 0

items/i_char_icons.scp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1857,7 +1857,7 @@ DESCRIPTION=Spider (giant new)
18571857
DEFNAME=i_pet_ghost
18581858
NAME=ghost
18591859
TYPE=t_figurine
1860-
TDATA3=c_ghost_male
1860+
TDATA3=c_ghost_man
18611861
CATEGORY=Miscellaneous
18621862
SUBSECTION=Character Icons
18631863
DESCRIPTION=Ghost

npcs/c_monster_classic.scp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5249,7 +5249,7 @@ ON=@Create
52495249
[CHARDEF 0192]
52505250
//Ghost robe is not automatic !
52515251
//DEFNAME2=GHOSTMAN
5252-
DEFNAME=c_ghost_male
5252+
DEFNAME=c_ghost_man
52535253
NAME=Ghost
52545254
ICON=i_pet_man
52555255
CAN=mt_equip|mt_walk|mt_run|mt_ghost

npcs/c_monster_ml.scp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1505,7 +1505,7 @@ DESCRIPTION=Elf, Female
15051505

15061506

15071507
[CHARDEF 025f]
1508-
DEFNAME=c_elf_ghost_male
1508+
DEFNAME=c_elf_ghost_man
15091509
NAME=Elf male Ghost
15101510
ICON=i_pet_MAN
15111511
CAN=mt_equip|mt_walk|mt_run|mt_ghost
@@ -1522,7 +1522,7 @@ TSPEECH=spk_human_default
15221522
TEVENTS=e_Human_HearUnk
15231523

15241524
RESLEVEL=5
1525-
RESDISPDNID=c_ghost_male
1525+
RESDISPDNID=c_ghost_man
15261526

15271527
ERALIMITLOOT=5
15281528
ERALIMITGEAR=5

npcs/c_monster_sa.scp

+1-1
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ TEVENTS=e_human_hearunk
395395

396396
RESLEVEL=7
397397
RESDISPDNHUE=0410
398-
RESDISPDNID=c_ghost_male
398+
RESDISPDNID=c_ghost_man
399399

400400
ERALIMITLOOT=6
401401
ERALIMITGEAR=6

0 commit comments

Comments
 (0)