This repository has been archived by the owner on Apr 8, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2038 from Owain94/1411-merge
project: Merge upstream
- Loading branch information
Showing
109 changed files
with
643 additions
and
514 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright (c) 2018, Matthew Steglinski <https://github.com/sainttx> | ||
* Copyright (c) 2019, Adam <[email protected]> | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
|
@@ -24,15 +24,12 @@ | |
*/ | ||
package net.runelite.api.events; | ||
|
||
/** | ||
* An event when the local player dies. | ||
*/ | ||
public class LocalPlayerDeath implements Event | ||
{ | ||
public static final LocalPlayerDeath INSTANCE = new LocalPlayerDeath(); | ||
import lombok.Value; | ||
import net.runelite.api.Skill; | ||
|
||
private LocalPlayerDeath() | ||
{ | ||
// noop | ||
} | ||
@Value | ||
public class FakeXpDrop implements Event | ||
{ | ||
private final Skill skill; | ||
private final int xp; | ||
} |
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
Oops, something went wrong.