diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-01-28 17:54:11 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-01-28 17:54:11 +0100 |
commit | 71bbf2d44ba5fc00fcb15ed96aff083342309498 (patch) | |
tree | 94657c14eddc2f81fe55d8c6a15e22165f6d7897 /source/Plugin.cpp | |
parent | Updated HookNotify with the hook renaming. (diff) | |
download | cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar.gz cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar.bz2 cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar.lz cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar.xz cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar.zst cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.zip |
Diffstat (limited to 'source/Plugin.cpp')
-rw-r--r-- | source/Plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Plugin.cpp b/source/Plugin.cpp index 8339d1c7a..2b26ae2cb 100644 --- a/source/Plugin.cpp +++ b/source/Plugin.cpp @@ -126,9 +126,9 @@ bool cPlugin::OnDisconnect(cPlayer * a_Player, const AString & a_Reason) -bool cPlugin::OnKilled(cPawn & a_Killed, cEntity * a_Killer) +bool cPlugin::OnKilling(cPawn & a_Victim, cEntity * a_Killer) { - UNUSED(a_Killed); + UNUSED(a_Victim); UNUSED(a_Killer); return false; } |