Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
#99 Fixed titles.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shynixn committed Jun 5, 2022
1 parent fbc3c76 commit 381791d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ StructureBlockLibApi.INSTANCE
.onResult(e -> plugin.getLogger().log(Level.INFO, ChatColor.GREEN + "Loaded structure 'mystructure'."));
```

#### Load a structure on your server and manipulate the blocks
##### Load a structure on your server and manipulate the blocks

```java
// Minimal configuration
Expand All @@ -178,7 +178,7 @@ StructureBlockLibApi.INSTANCE
.onResult(e -> plugin.getLogger().log(Level.INFO, ChatColor.GREEN + "Loaded structure 'mystructure'."));
```

#### Load a structure on your server and manipulate the entities
##### Load a structure on your server and manipulate the entities

```java
// Minimal configuration
Expand All @@ -205,7 +205,7 @@ StructureBlockLibApi.INSTANCE
.onResult(e -> plugin.getLogger().log(Level.INFO, ChatColor.GREEN + "Loaded structure 'mystructure'."));
```

#### Load entities in memory and iterate them
##### Load entities in memory and iterate them

```java
List<StructureEntity<Entity, Location>> entities = new ArrayList<>();
Expand All @@ -228,7 +228,7 @@ StructureBlockLibApi.INSTANCE
});
```

#### Load blocks in memory and iterate them
##### Load blocks in memory and iterate them

```java
List<StructurePlacePart<Block, World>> blocks = new ArrayList<>();
Expand Down

0 comments on commit 381791d

Please sign in to comment.