mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
Fix log calls that either didn't carry over or were using newer aliases that weren't converted to FMT prior to migration
This commit is contained in:
+1
-1
@@ -810,7 +810,7 @@ bool Client::CheckFizzle(uint16 spell_id)
|
||||
|
||||
float fizzle_roll = zone->random.Real(0, 100);
|
||||
|
||||
LogSpells("Check Fizzle [{}] spell [{}] fizzlechance: %0.2f%% diff: %0.2f roll: %0.2f", GetName(), spell_id, fizzlechance, diff, fizzle_roll);
|
||||
LogSpells("Check Fizzle [{}] spell [{}] fizzlechance: [{}] diff: [{}] roll: [{}]", GetName(), spell_id, fizzlechance, diff, fizzle_roll);
|
||||
|
||||
if(fizzle_roll > fizzlechance)
|
||||
return(true);
|
||||
|
||||
Reference in New Issue
Block a user