mirror of
https://github.com/maca134/ExileLootDrop.git
synced 2024-08-30 17:22:13 +00:00
Max item amount set too 200
This commit is contained in:
parent
f5acc973b1
commit
5dbbcb3678
@ -40,6 +40,8 @@ namespace ExileLootDrop
|
||||
var parts = input.Split('|');
|
||||
var table = parts[0];
|
||||
var count = (parts.Length == 2) ? int.Parse(parts[1]) : 1;
|
||||
if (count > 200)
|
||||
count = 200;
|
||||
try
|
||||
{
|
||||
return string.Join("|", LootTable.GetItems(table, count));
|
||||
|
Loading…
Reference in New Issue
Block a user