SteamWar/SpigotCore
Archiviert
13
0

Fixing Method renaming
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: Chaoscaot <chaoscaot444@gmail.com>
Dieser Commit ist enthalten in:
Chaoscaot 2021-11-13 16:13:54 +01:00
Ursprung c49daba060
Commit 48b2733470

Datei anzeigen

@ -122,9 +122,9 @@ public class SWListInv<T> extends SWInventory {
List<SchematicNode> schems; List<SchematicNode> schems;
if(type == null) if(type == null)
schems = SchematicNode.filterSchems(steamwarUserId, node -> true); schems = SchematicNode.getAllSchematicsAccessibleByUser(steamwarUserId);
else else
schems = SchematicNode.getSchematicsOfType(steamwarUserId, type.toDB(), 0); schems = SchematicNode.getAllAccessibleSchematicsOfType(steamwarUserId, type.toDB());
for(SchematicNode s : schems){ for(SchematicNode s : schems){
Material m; Material m;