diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-18 16:26:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-18 16:26:02 -0300 |
commit | 1c7437af4782701411dcadb109d909c3d5f9b51a (patch) | |
tree | 323313f82d71fa560fc54b1937d4df9a5c2eeb4a /npc/031-5 | |
parent | 44ec7c04d69456a477cabc1c578a413ba5ceaba3 (diff) | |
download | serverdata-1c7437af4782701411dcadb109d909c3d5f9b51a.tar.gz serverdata-1c7437af4782701411dcadb109d909c3d5f9b51a.tar.bz2 serverdata-1c7437af4782701411dcadb109d909c3d5f9b51a.tar.xz serverdata-1c7437af4782701411dcadb109d909c3d5f9b51a.zip |
[skip ci] Fix safeguard
Diffstat (limited to 'npc/031-5')
-rw-r--r-- | npc/031-5/beatrice.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/031-5/beatrice.txt b/npc/031-5/beatrice.txt index 418d535cb..6671ef7ac 100644 --- a/npc/031-5/beatrice.txt +++ b/npc/031-5/beatrice.txt @@ -95,7 +95,7 @@ L_Seller: // 1.00% = 2 pts // Sanitization and Scaling .@pc *= (.@pc < 10 ? 2 : 1) + (.@pc / 10); - .@pc = min(.@pc, 1120); + .@pc = min(.@pc, 1200); mesn; mesq l("I offer you %s Aethyr Points per unit of %s. How many do you wish to sell? (0-%d)", fnum(.@pc), getitemlink(.@id), countitem(.@id)); input .@am, 0, countitem(.@id); |