Skip to content

Commit

Permalink
Merge pull request #700 from madsboddum/Removed-unused
Browse files Browse the repository at this point in the history
Removed unused NGE data loaders
  • Loading branch information
Josh-Larson committed Jul 21, 2022
2 parents bd41fb6 + 6e81995 commit 07b858a
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 360 deletions.
38 changes: 0 additions & 38 deletions serverdata/skill/skill_template.sdb

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ abstract class DataLoader {
*/
fun buffs(): BuffLoader = ServerData.buffs
fun skills(): SkillLoader = ServerData.skills
fun skillTemplates(): SkillTemplateLoader = ServerData.skillTemplates
fun staticItems(): StaticItemLoader = ServerData.staticItems
fun itemBonusSets(): ItemBonusSetLoader = ServerData.itemBonusSet
fun combatXpMultipliers(): CombatXpMultiplierLoader = ServerData.combatXpMultipliers
fun playerLevels(): PlayerLevelLoader = ServerData.playerLevels
fun playerRoles(): PlayerRoleLoader = ServerData.playerRoles
Expand Down Expand Up @@ -76,7 +74,6 @@ abstract class DataLoader {
fun dynamicSpawns(): DynamicSpawnLoader = ServerData.dynamicSpawns
fun terrainLevels(): TerrainLevelLoader = ServerData.terrainLevels
fun noSpawnZones(): NoSpawnZoneLoader = ServerData.noSpawnZones
fun gcwRegionLoader(): GcwRegionLoader = ServerData.gcwRegionLoader
fun conversationLoader(): ConversationLoader = ServerData.conversationLoader
fun questLoader(): QuestLoader = ServerData.questLoader
fun badges(): BadgeLoader = ServerData.badges
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ object ServerData {
* Skill / Collection
*/
val skills by SoftDataLoaderDelegate(::SkillLoader)
val skillTemplates by SoftDataLoaderDelegate(::SkillTemplateLoader)


/*
* Player
*/
Expand All @@ -60,7 +59,6 @@ object ServerData {
val playerStartClothing by SoftDataLoaderDelegate(::StartClothingLoader)
val staticItems by SoftDataLoaderDelegate(::StaticItemLoader)
val performances by SoftDataLoaderDelegate(::PerformanceLoader)
val itemBonusSet by SoftDataLoaderDelegate(::ItemBonusSetLoader)
val combatXpMultipliers by SoftDataLoaderDelegate(::CombatXpMultiplierLoader)

/*
Expand Down Expand Up @@ -94,7 +92,6 @@ object ServerData {
val dynamicSpawns by SoftDataLoaderDelegate(::DynamicSpawnLoader)
val terrainLevels by SoftDataLoaderDelegate(::TerrainLevelLoader)
val noSpawnZones by SoftDataLoaderDelegate(::NoSpawnZoneLoader)
val gcwRegionLoader by SoftDataLoaderDelegate(::GcwRegionLoader)
val conversationLoader by SoftDataLoaderDelegate(::ConversationLoader)
val questLoader by SoftDataLoaderDelegate(::QuestLoader)
val badges by SoftDataLoaderDelegate(::BadgeLoader)
Expand Down

This file was deleted.

0 comments on commit 07b858a

Please sign in to comment.