Bug G-Lovers + clip art = create() function bug

taltamir

Member
In G-lovers path you can create clip art items. but create() function fails to do so
it seems that mafia is trying to access it as a skill instead of by visiting your mystical bookshelf
creatable_amount correctly recognizes those items as creatable:
Code:
> ash creatable_amount($item[fromage pinotage])

Returned: 3
however actually trying to create them fails:
Code:
> ash create(1, $item[fromage pinotage]);

Creating 1 Fromage Pinotage...
Creation failed, no results detected.
Returned: false
manually clicking on mystical bookshelf in camp and then clicking on the clip art skill and creating it works just fine
Code:
You acquire an item: Fromage Pinotage
Preference _clipartSummons changed from 1 to 2
Preference tomeSummons changed from 1 to 2
I think the issue here is that mafia is trying to access it as a skill using $skill[summon clip art]
instead of accessing it via visiting the mystical bookshelf. the skill gets blocked for not having g in the name
 
Last edited:
Top