19 lines
377 B
Java
19 lines
377 B
Java
package com.zontreck.events;
|
|
|
|
|
|
import com.zontreck.homes.Home;
|
|
|
|
import net.neoforged.bus.api.Event;
|
|
|
|
/**
|
|
* This event may be cancelled if the home is in a invalid location, like in the middle of a claim they have no rights to
|
|
*/
|
|
public class HomeCreatedEvent extends Event
|
|
{
|
|
public Home home;
|
|
public HomeCreatedEvent(Home home)
|
|
{
|
|
this.home=home;
|
|
}
|
|
}
|
|
|