diff options
author | Led Mitz <smoothshifter@tuta.io> | 2023-10-16 03:17:20 +0000 |
---|---|---|
committer | Led Mitz <smoothshifter@tuta.io> | 2023-10-16 03:17:20 +0000 |
commit | 569602b26bd80cf00e02b0ab0570c0c8684fb86b (patch) | |
tree | f9afa4c95665265b65bd66d165b061beb2c85f16 /world/map/npc/commands | |
parent | aac3cffefd6259f20ccade8d2179dff430eae6e3 (diff) | |
parent | 9584d85bc84fc367147f405403b16eb06daa1ac8 (diff) | |
download | serverdata-569602b26bd80cf00e02b0ab0570c0c8684fb86b.tar.gz serverdata-569602b26bd80cf00e02b0ab0570c0c8684fb86b.tar.bz2 serverdata-569602b26bd80cf00e02b0ab0570c0c8684fb86b.tar.xz serverdata-569602b26bd80cf00e02b0ab0570c0c8684fb86b.zip |
Merge branch 'equipment_stats_use' into 'master'
Equipment stats use
See merge request legacy/serverdata!682
Diffstat (limited to 'world/map/npc/commands')
-rw-r--r-- | world/map/npc/commands/debug.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/commands/debug.txt b/world/map/npc/commands/debug.txt index 19ac4114..c966c051 100644 --- a/world/map/npc/commands/debug.txt +++ b/world/map/npc/commands/debug.txt @@ -25,11 +25,11 @@ L_Begin: "Close.", L_Close; L_Level: - mes "What level do you want to be (min: 1 - max: 99)?"; + mes "What level do you want to be (min: 1 - max: 140)?"; input @lvl; if (@lvl < 1) goto L_LevelTooLow; - if (@lvl > 99) + if (@lvl > 140) goto L_LevelTooHigh; if (BaseLevel == @lvl) goto L_SameLevel; |