-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New event for making dog uncomfortable to hook into cheeves
- Loading branch information
1 parent
f14df68
commit dadacd2
Showing
2 changed files
with
26 additions
and
0 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,18 @@ | ||
package no.runsafe.dog.events; | ||
|
||
import no.runsafe.framework.api.player.IPlayer; | ||
import no.runsafe.framework.minecraft.event.player.RunsafeCustomEvent; | ||
|
||
public class DogUncomfortableEvent extends RunsafeCustomEvent | ||
{ | ||
public DogUncomfortableEvent(IPlayer player) | ||
{ | ||
super(player, "runsafe.dog.uncomfortable"); | ||
} | ||
|
||
@Override | ||
public Object getData() | ||
{ | ||
return null; | ||
} | ||
} |