Skip to content

Commit 0a123b5

Browse files
committed
fix: small change to seers log
1 parent 142f29a commit 0a123b5

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

data/src/scripts/skill_agility/scripts/shortcuts.rs2

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ if(stat(agility) < 20) {
3636
~mesbox("You need an Agility level of 20 to balance on this log.");
3737
return;
3838
}
39-
p_teleport(movecoord(loc_coord, 1, 0, 0));
39+
def_int $z_dist = -5;
40+
if(coordx(coord) < 2602) {
41+
$z_dist = 5;
42+
}
43+
p_teleport(movecoord(loc_coord, divide($z_dist, -5), 0, 0));
4044
p_arrivedelay;
4145
mes("You walk carefully across the slippery log...");
4246
~set_readywalk_bas(human_walk_logbalance_ready, human_walk_logbalance);
43-
def_int $z_dist = -4;
44-
if(coordx(coord) < 2602) {
45-
$z_dist = 4;
46-
}
4747
~forcemove(movecoord(coord, $z_dist, 0, 0));
4848
~update_bas;
4949
stat_advance(agility, 85);

0 commit comments

Comments
 (0)