diff --git a/src/interpreter_extra.cc b/src/interpreter_extra.cc index f86624b..4decf4c 100644 --- a/src/interpreter_extra.cc +++ b/src/interpreter_extra.cc @@ -3604,7 +3604,8 @@ static void opAddMultipleObjectsToInventory(Program* program) if (quantity < 0) { quantity = 1; } else if (quantity > 99999) { - quantity = 500; + // SFALL + quantity = 99999; } if (itemAdd(object, item, quantity) == 0) {