Fixed typo

This commit is contained in:
Collin Smith
2020-07-16 19:26:19 -07:00
parent 623859681b
commit 01575d1c04

View File

@ -42,7 +42,7 @@ public class ItemGeneratorTool extends ApplicationAdapter {
int numItems = 5;
String type = "sst";
for (int i = 0; i < numItems; i++) {
Item item = generator.generate("sst");
Item item = generator.generate(type);
Gdx.app.log(TAG, ObjectUtils.toString(item));
}