Добавить в корзинуПозвонить
Найти в Дзене
RaidGame.ru

tentacles

LonaRPG (LRPG) Обновление мода 'Revamp patcher' # 2026-04-28 - RolePlayS case_direction port + AbomEatDed Float#times fix **Game_Player crashed every Vile Scepter / Bone Staff / AbominationTotem summon.** Player crash log (`error_log20260427_2038_24.txt`) showed two root causes when RPS summon batches ran with `user == $game_player`: 1. `undefined method 'case_direction' for #<Game_Player>` raised in `Game_Event#find_proper_page` rescue while spawning `SummonTentacleProjectile` (event id 95 / 344). defines `def case_direction` on `Game_Character`, returning the unit `[dx, dy]` offset from `@direction`. That helper was never ported into this branch, yet `RolePlayS/Scripts/480_EventCharacterBatch.rb` calls `user.case_direction` in 9 batch methods (`batch_SummonTentacleProjectile`, abom larva, projectile aim, etc.). Game_Event inherits from Game_Character so NPC summoners worked; Game_Player does not get the...

tentacles

LonaRPG (LRPG)

Обновление мода 'Revamp patcher'

# 2026-04-28 - RolePlayS case_direction port + AbomEatDed Float#times fix

**Game_Player crashed every Vile Scepter / Bone Staff / AbominationTotem summon.**

Player crash log (`error_log20260427_2038_24.txt`) showed two root causes when

RPS summon batches ran with `user == $game_player`:

1. `undefined method 'case_direction' for #<Game_Player>` raised in

`Game_Event#find_proper_page` rescue while spawning

`SummonTentacleProjectile` (event id 95 / 344).

defines `def case_direction` on `Game_Character`, returning the unit

`[dx, dy]` offset from `@direction`. That helper was never ported into

this branch, yet `RolePlayS/Scripts/480_EventCharacterBatch.rb` calls

`user.case_direction` in 9 batch methods (`batch_SummonTentacleProjectile`,

abom larva, projectile aim, etc.). Game_Event inherits from Game_Character

so NPC summoners worked; Game_Player does not get the...