Fix 2 typos.

This commit is contained in:
Relintai 2020-07-18 12:09:28 +02:00
parent b70154cbdd
commit 9f696b50ab
2 changed files with 2 additions and 2 deletions

View File

@ -416,7 +416,7 @@ Ref<Dungeon> DungeonData::instance() {
dungeon = _dungeon->duplicate();
}
dungeon->set_data(Ref<Dungeon>(this));
dungeon->set_data(Ref<DungeonData>(this));
return dungeon;
}

View File

@ -204,7 +204,7 @@ Ref<Planet> PlanetData::instance() {
planet = _planet->duplicate();
}
planet->set_data(Ref<Planet>(this));
planet->set_data(Ref<PlanetData>(this));
return planet;
}