diff options
Diffstat (limited to 'npc')
-rwxr-xr-x | npc/items/pickled_beets.txt | 2 | ||||
-rwxr-xr-x | npc/items/warpTowels.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/items/pickled_beets.txt b/npc/items/pickled_beets.txt index 98d7360f..acce584d 100755 --- a/npc/items/pickled_beets.txt +++ b/npc/items/pickled_beets.txt @@ -1,5 +1,5 @@ function script usePickledBeets { - heal 50, 0, 1; + heal 50, 0; if (Class == 1) setlook LOOK_HAIR_COLOR, HC_PURPLE; elif (Class == 2) diff --git a/npc/items/warpTowels.txt b/npc/items/warpTowels.txt index 18fea9f7..0ed9a91c 100755 --- a/npc/items/warpTowels.txt +++ b/npc/items/warpTowels.txt @@ -4,7 +4,7 @@ function script WarpTowel { goto L_DontPanic; if (isin("botcheck",25,27,51,47)) goto L_Prison; - if (getmapflag(getmapname(), mf_nosave) || getmapflag(getmapname(), MF_NOTELEPORT) || getmapflag(getmapname(), MF_NOWARP) || isin("009-7",$@fightclub_x1,$@fightclub_y1,$@fightclub_x2,$@fightclub_y2)) + if (getmapflag(getmapname(), mf_nosave) || getmapflag(getmapname(), mf_noteleport) || getmapflag(getmapname(), mf_nowarp) || isin("009-7",$@fightclub_x1,$@fightclub_y1,$@fightclub_x2,$@fightclub_y2)) goto L_Forbid; if (@warpTowelName$ == "HitchhikersTowel") |