aboutsummaryrefslogtreecommitdiff
path: root/game/player/PlayerScript.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/player/PlayerScript.cpp')
-rw-r--r--game/player/PlayerScript.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/game/player/PlayerScript.cpp b/game/player/PlayerScript.cpp
index de53fc7..7f5d0c4 100644
--- a/game/player/PlayerScript.cpp
+++ b/game/player/PlayerScript.cpp
@@ -18,8 +18,7 @@ void PlayerScript::init() {
bool PlayerScript::on_collision(const CollisionEvent & ev) {
BehaviorScript & play_scr = this->get_components_by_name<BehaviorScript>("player").front();
- BehaviorScript & end_scr
- = this->get_components_by_name<BehaviorScript>("end_game_script").front();
+ BehaviorScript & end_scr = this->get_components_by_name<BehaviorScript>("player").back();
RefVector<Animator> animators = this->get_components_by_name<Animator>("player");
RefVector<ParticleEmitter> emitters
= this->get_components_by_name<ParticleEmitter>("player");