diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-09 16:59:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-09 16:59:48 -0300 |
commit | 36873c37872140c62bd1a16fd879227f5050cdeb (patch) | |
tree | 8357270c5a95fd24717e3f5b2cf658b47d20d827 | |
parent | 92f7a4436220c1b999c8ebcf3834a00a1b78b10b (diff) | |
download | serverdata-36873c37872140c62bd1a16fd879227f5050cdeb.tar.gz serverdata-36873c37872140c62bd1a16fd879227f5050cdeb.tar.bz2 serverdata-36873c37872140c62bd1a16fd879227f5050cdeb.tar.xz serverdata-36873c37872140c62bd1a16fd879227f5050cdeb.zip |
Fix some other simple bugs
-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") |