Skip to content

Commit

Permalink
3.0.1: removed log
Browse files Browse the repository at this point in the history
  • Loading branch information
unldenis committed Jan 31, 2024
1 parent 656dae0 commit 894b6e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
8 changes: 2 additions & 6 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,20 @@ HoloEasy is a simple, modern and high-performant Java and Kotlin Minecraft Holog
* ProtocolLib installed on your server

### Add dependency

> [!WARNING]
> If you're having trouble with Jitpack you can always find the build <a href="https://github.com/unldenis/holoeasy/releases/tag/3.0.0">here</a>.
#### Maven

```xml
<dependency>
<groupId>com.github.unldenis</groupId>
<artifactId>holoeasy</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</dependency>
```

#### Gradle

```kotlin
implementation("com.github.unldenis:holoeasy:3.0.0")
implementation("com.github.unldenis:holoeasy:3.0.1")
```

Make sure you include the <a href="https://jitpack.io/">repository</a> as well.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<groupId>org.holoeasy</groupId>
<artifactId>holoeasy</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/org/holoeasy/packet/spawn/SpawnPacketC.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ object SpawnPacketC : ISpawnPacket {
override fun spawn(entityId: Int, entityType: EntityType, location: Location, plugin: Plugin?): PacketContainer {
val extraData = 1

println("$entityId $entityType ${location.y}")

if(entityType == EntityType.ARMOR_STAND) {
return packet(PacketType.Play.Server.SPAWN_ENTITY_LIVING) {
modifier.writeDefaults()
Expand Down

0 comments on commit 894b6e8

Please sign in to comment.