mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Temporarily decrease sentiment decay time
This commit is contained in:
parent
326aa3f8ff
commit
8575ff87c5
@ -11,8 +11,9 @@ use serde::{Deserialize, Serialize};
|
||||
pub const FACTION_MAX_SENTIMENTS: usize = 1024;
|
||||
pub const NPC_MAX_SENTIMENTS: usize = 128;
|
||||
|
||||
// Magic factor used to control sentiment decay speed
|
||||
const DECAY_FACTOR: f32 = 6.0;
|
||||
/// Magic factor used to control sentiment decay speed (note: higher = slower
|
||||
/// decay, for implementation reasons).
|
||||
const DECAY_FACTOR: f32 = 1.0; //6.0; TODO: Use this value when we're happy that everything is working as intended
|
||||
|
||||
/// The target that a sentiment is felt toward.
|
||||
// NOTE: More could be added to this! For example:
|
||||
|
Loading…
Reference in New Issue
Block a user