fixed options, fixed save, new Screenshots, v.140

This commit is contained in:
TAASONI3
2023-05-10 13:57:36 +02:00
parent 6dc7063cec
commit 7387a4d9a5
112 changed files with 11929 additions and 8220 deletions

View File

@@ -103,17 +103,17 @@ namespace Assets.Scripts.Slimes
int rand = new System.Random().Next(100) + 1;
if (rand < 10 + luck)
{
int type = new System.Random().Next(3);
int type = new System.Random().Next(2);
switch (type)
{
case 0:
item = new Equipment(luck);
break;
case 1:
/*case 1:
item = new Book(luck);
break;
case 2:
item = new Item(luck);
break;*/
case 1:
item = new Item(luck,false);
break;
}