Skip to content
This repository was archived by the owner on Jun 19, 2021. It is now read-only.

Commit f438550

Browse files
authored
fix typo in Upstream.kt (#465)
* fix typo in Upstream.kt * lowercase api
1 parent d99cf54 commit f438550

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

buildSrc/src/main/kotlin/Upstream.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ open class Upstream(in_name: String, in_useBlackList: Boolean, in_list: String,
1515

1616
var serverList = list.stream().filter { patch -> patch.startsWith("server/") }
1717
?.sorted()?.map { patch -> patch.substring(7, patch.length) }?.collect(Collectors.toList())
18-
var apiList = list.stream().filter { patch -> patch.startsWith("API/") }
18+
var apiList = list.stream().filter { patch -> patch.startsWith("api/") }
1919
?.sorted()?.map { patch -> patch.substring(4, patch.length) }?.collect(Collectors.toList())
2020

2121

@@ -85,4 +85,4 @@ open class Upstream(in_name: String, in_useBlackList: Boolean, in_list: String,
8585
}
8686
return filesList
8787
}
88-
}
88+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name=Empirecraft
22
useBlackList=false
3-
list=API/Add-ChatColor.getById.patch,server/Don-t-trigger-Lootable-Refresh-for-non-player-intera.patch,server/Fix-Bukkit.createInventory-with-type-LECTERN.patch,server/dont-load-chunks-for-physics.patch
3+
list=api/Add-ChatColor.getById.patch,server/Don-t-trigger-Lootable-Refresh-for-non-player-intera.patch,server/Fix-Bukkit.createInventory-with-type-LECTERN.patch,server/dont-load-chunks-for-physics.patch
44
branch=origin/master

0 commit comments

Comments
 (0)