You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nora T Hagg and Sorceress's Garden can target multiple players at once.
TODO:
Change HuntPlayer NPC, Object & FloorItem to accept a list of target's but also randomly select one and leave it up to the calling code to decide which it wants to use
data classHuntPlayer(
valmode:String,
valtargets:List<Player>,
valtarget:Player
) : Event
Hunting.kt
val targets = getCharacters(npc, players, range, definition)
if (targets.isEmpty()) {
continue
}
val target = targets.random(seed)
npc.emit(HuntPlayer(mode, targets, target))
Nora T Hagg and Sorceress's Garden can target multiple players at once.
TODO:
HuntPlayer
NPC, Object & FloorItem to accept a list of target's but also randomly select one and leave it up to the calling code to decide which it wants to useHunting.kt
The text was updated successfully, but these errors were encountered: