Fix combat depuis joueur
This commit is contained in:
parent
01465d6fa5
commit
4c1640bb31
@ -380,7 +380,7 @@ export class VadentisActor extends Actor {
|
||||
if (game.user.isGM) {
|
||||
VadentisUtility.performAttack( combatData);
|
||||
} else {
|
||||
game.socket.emit("system.foundryvtt-vadentis", { name: "msg_attack", data: { combatData } } );
|
||||
game.socket.emit("system.foundryvtt-vadentis", { name: "msg_attack", data: combatData } );
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
@ -85,6 +85,7 @@ export class VadentisUtility extends Entity {
|
||||
static async performAttack( combatData) {
|
||||
let attacker = game.actors.get(combatData.attackerActorId);
|
||||
let defender = game.actors.get(combatData.targetActorId);
|
||||
console.log("ATTACK !!", attacker, defender);
|
||||
if( attacker && defender) {
|
||||
let defense = defender.getDefenseScore();
|
||||
let attaque = attacker.getAttaqueScore();
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "foundryvtt-vadentis",
|
||||
"title": "Vadentis",
|
||||
"description": "Système Vadentis pour FoundryVTT",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"manifestPlusVersion": "1.0.0",
|
||||
"minimumCoreVersion": "0.7.5",
|
||||
"compatibleCoreVersion": "0.7.9",
|
||||
|
Loading…
Reference in New Issue
Block a user