diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-09-01 21:05:45 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-09-01 21:05:45 +0200 |
commit | dfed6f94ca78f2e104ed316d83400b0ca74cb79a (patch) | |
tree | d00547328b70bbb4a4ea5d713f6ffe8e3a48ee12 /src/Entities/Entity.h | |
parent | Added CustomName to cMonster. (diff) | |
download | cuberite-dfed6f94ca78f2e104ed316d83400b0ca74cb79a.tar cuberite-dfed6f94ca78f2e104ed316d83400b0ca74cb79a.tar.gz cuberite-dfed6f94ca78f2e104ed316d83400b0ca74cb79a.tar.bz2 cuberite-dfed6f94ca78f2e104ed316d83400b0ca74cb79a.tar.lz cuberite-dfed6f94ca78f2e104ed316d83400b0ca74cb79a.tar.xz cuberite-dfed6f94ca78f2e104ed316d83400b0ca74cb79a.tar.zst cuberite-dfed6f94ca78f2e104ed316d83400b0ca74cb79a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Entities/Entity.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entities/Entity.h b/src/Entities/Entity.h index b9c280b6b..774cdb062 100644 --- a/src/Entities/Entity.h +++ b/src/Entities/Entity.h @@ -447,7 +447,7 @@ public: // tolua_end /// Called when the specified player right-clicks this entity - virtual void OnRightClicked(cPlayer &) {} + virtual void OnRightClicked(cPlayer & a_Player) {} /// Returns the list of drops for this pawn when it is killed. May check a_Killer for special handling (sword of looting etc.). Called from KilledBy(). virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) |