-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Удален WARN при добалении воздуха в креатив
- Loading branch information
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.reider745.hooks.bugfix; | ||
|
||
import cn.nukkit.block.BlockSapling; | ||
import com.reider745.api.hooks.HookClass; | ||
import com.reider745.api.hooks.annotation.Hooks; | ||
import com.reider745.api.hooks.annotation.Inject; | ||
|
||
@Hooks(className = "cn.nukkit.block.BlockSapling") | ||
public class SaplingFix implements HookClass { | ||
@Inject | ||
public static boolean isAged(BlockSapling self) { | ||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters