mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-13 05:54:17 +01:00
Fixed javadoc failing the build
This commit is contained in:
parent
4aa44f1a3a
commit
cf1eac3edd
@ -4,7 +4,7 @@ org.gradle.jvmargs = -Xmx3G
|
|||||||
org.gradle.daemon = false
|
org.gradle.daemon = false
|
||||||
|
|
||||||
# mod version info
|
# mod version info
|
||||||
mod_version = 0.4b
|
mod_version = 0.4c
|
||||||
minecraft_version = 1.18.1
|
minecraft_version = 1.18.1
|
||||||
forge_version = 39.0.8
|
forge_version = 39.0.8
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ public class Create {
|
|||||||
|
|
||||||
public static final String ID = "create";
|
public static final String ID = "create";
|
||||||
public static final String NAME = "Create";
|
public static final String NAME = "Create";
|
||||||
public static final String VERSION = "0.4b";
|
public static final String VERSION = "0.4c";
|
||||||
|
|
||||||
public static final Logger LOGGER = LogManager.getLogger();
|
public static final Logger LOGGER = LogManager.getLogger();
|
||||||
|
|
||||||
|
@ -7,7 +7,6 @@ import java.util.function.Function;
|
|||||||
import java.util.function.Predicate;
|
import java.util.function.Predicate;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import com.jozufozu.flywheel.repack.joml.Vector3i;
|
|
||||||
import com.simibubi.create.CreateClient;
|
import com.simibubi.create.CreateClient;
|
||||||
import com.simibubi.create.foundation.utility.Iterate;
|
import com.simibubi.create.foundation.utility.Iterate;
|
||||||
import com.simibubi.create.foundation.utility.Pair;
|
import com.simibubi.create.foundation.utility.Pair;
|
||||||
@ -16,6 +15,7 @@ import com.simibubi.create.foundation.utility.VecHelper;
|
|||||||
import net.minecraft.MethodsReturnNonnullByDefault;
|
import net.minecraft.MethodsReturnNonnullByDefault;
|
||||||
import net.minecraft.core.BlockPos;
|
import net.minecraft.core.BlockPos;
|
||||||
import net.minecraft.core.Direction;
|
import net.minecraft.core.Direction;
|
||||||
|
import net.minecraft.core.Vec3i;
|
||||||
import net.minecraft.world.entity.player.Player;
|
import net.minecraft.world.entity.player.Player;
|
||||||
import net.minecraft.world.item.BlockItem;
|
import net.minecraft.world.item.BlockItem;
|
||||||
import net.minecraft.world.item.ItemStack;
|
import net.minecraft.world.item.ItemStack;
|
||||||
@ -55,7 +55,7 @@ public interface IPlacementHelper {
|
|||||||
*
|
*
|
||||||
* @return the PlacementOffset object describing where to place the new block.<br>
|
* @return the PlacementOffset object describing where to place the new block.<br>
|
||||||
* Use {@link PlacementOffset#fail} when no new position could be found.<br>
|
* Use {@link PlacementOffset#fail} when no new position could be found.<br>
|
||||||
* Use {@link PlacementOffset#success(Vector3i)} with the new BlockPos to indicate a success
|
* Use {@link PlacementOffset#success(Vec3i)} with the new BlockPos to indicate a success
|
||||||
* and call {@link PlacementOffset#withTransform(Function)} if the blocks default state has to be modified before it is placed
|
* and call {@link PlacementOffset#withTransform(Function)} if the blocks default state has to be modified before it is placed
|
||||||
*/
|
*/
|
||||||
PlacementOffset getOffset(Player player, Level world, BlockState state, BlockPos pos, BlockHitResult ray);
|
PlacementOffset getOffset(Player player, Level world, BlockState state, BlockPos pos, BlockHitResult ray);
|
||||||
|
@ -5,7 +5,7 @@ license="MIT"
|
|||||||
|
|
||||||
[[mods]]
|
[[mods]]
|
||||||
modId="create"
|
modId="create"
|
||||||
version="0.4b"
|
version="0.4c"
|
||||||
displayName="Create"
|
displayName="Create"
|
||||||
#updateJSONURL=""
|
#updateJSONURL=""
|
||||||
displayURL="https://www.curseforge.com/minecraft/mc-mods/create"
|
displayURL="https://www.curseforge.com/minecraft/mc-mods/create"
|
||||||
|
Loading…
Reference in New Issue
Block a user