stylesheet 잘못 불러오는 문제 해결.
jquery.redirect 추가. global 변수 extract 우회가 제대로 동작하지 않던 문제 해결
This commit is contained in:
@@ -19,7 +19,7 @@ class RegNPC extends \sammo\Event\Action{
|
||||
int $death = 300,
|
||||
$ego = null,
|
||||
string $char = '',
|
||||
string $text = ''
|
||||
$text = ''
|
||||
){
|
||||
$this->npc = new \sammo\Scenario\NPC(
|
||||
$affinity,
|
||||
@@ -34,7 +34,7 @@ class RegNPC extends \sammo\Event\Action{
|
||||
$death,
|
||||
$ego,
|
||||
$char,
|
||||
$text
|
||||
$text?:''
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ class EventHandler{
|
||||
|
||||
$resultAction = [];
|
||||
foreach($this->actions as $action){
|
||||
$resultAction[] = $action->run();
|
||||
$resultAction[] = $action->run($env);
|
||||
}
|
||||
$result['action'] = $resultAction;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user