Increased object spawn chance generally and in plain tiles specifically.

This commit is contained in:
finnchen123
2026-02-06 13:38:09 +01:00
parent b657de5ea0
commit 2562321918
7 changed files with 118 additions and 124 deletions

View File

@@ -157,9 +157,9 @@ namespace Assets.Scripts.Player
}
//Generating player instance for stat preview during creation
public void generatePlayer(BasicRace playerRace, BasicClass playerClass, string name, int difficulty)
public PlayerObject generatePlayer(BasicRace playerRace, BasicClass playerClass, string name, int difficulty)
{
player = new PlayerObject(name, playerRace, playerClass, difficulty);
return new PlayerObject(name, playerRace, playerClass, difficulty);
}
public void move(Vector3 input)