아이템 속성이 동적으로 변경되어 static 제거

This commit is contained in:
2019-10-04 14:30:45 +09:00
parent 9181cbfee5
commit 07328847f4
101 changed files with 323 additions and 404 deletions
+6 -6
View File
@@ -5,10 +5,10 @@ use \sammo\General;
class None extends \sammo\BaseItem{
protected static $id = 0;
protected static $name = '-';
protected static $info = null;
protected static $cost = 0;
protected static $consumable = false;
protected static $buyable = true;
protected $id = 0;
protected $name = '-';
protected $info = null;
protected $cost = 0;
protected $consumable = false;
protected $buyable = true;
}