From ec2329201342f75b8d90dba555610442a2ebcb02 Mon Sep 17 00:00:00 2001 From: iris Date: Fri, 15 May 2026 20:17:23 -0400 Subject: [PATCH] more clarification --- readme.md | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index b62cb5e..d5e0b3f 100644 --- a/readme.md +++ b/readme.md @@ -7,7 +7,7 @@ usage: solves for the least number of materials needed given a priority -input is just the stats in order shown in wynncraft +input is just the stats in order shown in wynncraft (limit/max) ``` > priority wood paper grains string oil meat diff --git a/src/main.rs b/src/main.rs index ed4c3a9..96d9d80 100644 --- a/src/main.rs +++ b/src/main.rs @@ -145,7 +145,7 @@ fn usage() { println!(" > solve 41/63 50/60 55/55 43/64 60/66 51/55 48/59 41/63"); println!(" solves for the least number of materials needed given a priority, eg:"); println!(" 10: [Wood, Grains, String, String, Oil, Meat, Meat, Gem, Gem, Gem]"); - println!(" input is just the stats in order shown in wynncraft"); + println!(" input is just the stats in order shown in wynncraft (limit/max)"); println!(" > priority wood paper grains string oil meat"); println!(" sets the material priority for solving (what to use and what to try first)"); }