Skip to content

Commit

Permalink
Move clientPickBlock APIs to client source set.
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Oct 5, 2023
1 parent 10292b9 commit 2fe607a
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"net.fabricmc.fabric.impl.event.interaction.InteractionEventsRouter"
],
"client": [
"net.fabricmc.fabric.impl.event.interaction.InteractionEventsRouterClient"
"net.fabricmc.fabric.test.client.event.interaction.InteractionEventsRouterClient"
]
},
"description": "Events for player interaction with blocks and entities.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"main": [
"net.fabricmc.fabric.test.event.interaction.AttackBlockTests",
"net.fabricmc.fabric.test.event.interaction.PlayerBreakBlockTests",
"net.fabricmc.fabric.test.event.interaction.PlayerPickBlockTests",
"net.fabricmc.fabric.test.client.event.interaction.PlayerPickBlockTests",
"net.fabricmc.fabric.test.event.interaction.UseEntityTests"
],
"fabric-gametest": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package net.fabricmc.fabric.impl.event.interaction;
package net.fabricmc.fabric.test.client.event.interaction;

import net.minecraft.block.BlockState;
import net.minecraft.entity.Entity;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package net.fabricmc.fabric.test.event.interaction;
package net.fabricmc.fabric.test.client.event.interaction;

import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
Expand Down

0 comments on commit 2fe607a

Please sign in to comment.