Remove dangling else

This commit is contained in:
the-real-herowl 2023-12-11 00:37:18 +01:00
parent cf70de0ecc
commit 8b00fff4cb
1 changed files with 1 additions and 2 deletions

View File

@ -1250,11 +1250,10 @@ function mob_class:do_states_attack (dtime)
elseif self.attack_type == "custom" and self.attack_state then
self.attack_state(self, dtime)
else
end
if self.on_attack then
self.on_attack(self, dtime)
end
end
end